package cmd import "github.com/spf13/cobra" var runCmd = &cobra.Command{ Use: "run", Short: "Run the configurator locally", Run: func(cmd *cobra.Command, args []string) { }, } func init() { rootCmd.AddCommand(runCmd) }