Files
kubescape/cmd/scan.go
Bezalel Brandwine 00d8660a91 fix --help flag
2021-10-14 10:46:42 +03:00

19 lines
336 B
Go

package cmd
import (
"github.com/spf13/cobra"
)
// scanCmd represents the scan command
var scanCmd = &cobra.Command{
Use: "scan",
Short: "Scan the current running cluster or yaml files",
Long: `The action you want to perform`,
Run: func(cmd *cobra.Command, args []string) {
},
}
func init() {
rootCmd.AddCommand(scanCmd)
}