package cmd import ( "github.com/spf13/cobra" ) var serveCmd = &cobra.Command{ Use: "serve", Short: "Start the HTTP server", Run: func(cmd *cobra.Command, args []string) { // TODO: implement server }, } func init() { rootCmd.AddCommand(serveCmd) }