Files
kubeshark/cmd/check.go
2022-12-26 06:31:36 +03:00

19 lines
306 B
Go

package cmd
import (
"github.com/spf13/cobra"
)
var checkCmd = &cobra.Command{
Use: "check",
Short: "Check the Kubeshark resources for potential problems",
RunE: func(cmd *cobra.Command, args []string) error {
runKubesharkCheck()
return nil
},
}
func init() {
rootCmd.AddCommand(checkCmd)
}