package cmd import ( "fmt" "github.com/spf13/cobra" ) // httpCmd represents the http command var httpCmd = &cobra.Command{ Use: "http", Short: "start http server", Run: func(cmd *cobra.Command, args []string) { fmt.Println("ok") }, }