package cmd import ( "github.com/spf13/cobra" ) func init() { rootCmd.AddCommand(testCmd) } var testCmd = &cobra.Command{ Use: "test", Short: "Only for test", Run: func(cmd *cobra.Command, args []string) { }, }