package serve import "github.com/spf13/cobra" var RootCmd = &cobra.Command{ Use: "serve", } func init() { RootCmd.AddCommand(backendCmd) }