package cmd import ( "github.com/spf13/cobra" ) // configCmd represents the config command var configCmd = &cobra.Command{ Use: "config", Short: "Set configuration", Long: ``, Run: func(cmd *cobra.Command, args []string) { }, } func init() { rootCmd.AddCommand(configCmd) }