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) }