2026-05-26 15:31:44 +02:00

18 lines
261 B
Go

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)
}