loic-go/cmd/web.go

20 lines
350 B
Go
Raw Normal View History

2025-03-25 16:53:35 +00:00
package cmd
import (
"forgejo.edf-bootstrap.cx.fg1.ffm.osc.live/Daniel.Sy/loic-go/pkg/web"
"github.com/spf13/cobra"
)
var webCmd = &cobra.Command{
Use: "web",
Short: "starts the web server",
Long: "starts the web UI for LOIC",
2025-03-25 16:53:35 +00:00
Run: func(cmd *cobra.Command, args []string) {
web.Start()
},
}
func init() {
rootCmd.AddCommand(webCmd)
}