package command import "github.com/spf13/cobra" var rootCmd = &cobra.Command{} func Execute() error { return rootCmd.Execute() } func init() { rootCmd.AddCommand(httpCmd) }