Redmage/cli/serve.go
2024-04-06 01:22:00 +07:00

17 lines
284 B
Go

package cli
import "github.com/spf13/cobra"
var serveCmd = &cobra.Command{
Use: "serve",
Short: "Starts the HTTP Server",
SilenceUsage: true,
RunE: func(cmd *cobra.Command, args []string) error {
return nil
},
}
func init() {
RootCmd.AddCommand(serveCmd)
}