chrly/internal/cmd/serve.go

20 lines
366 B
Go
Raw Normal View History

package cmd
import (
"github.com/spf13/cobra"
"ely.by/chrly/internal/di"
)
var serveCmd = &cobra.Command{
Use: "serve",
2020-01-03 03:21:57 +05:30
Short: "Starts HTTP handler for the skins system",
2024-02-07 18:59:52 +05:30
RunE: func(cmd *cobra.Command, args []string) error {
return startServer(di.ModuleSkinsystem, di.ModuleProfiles, di.ModuleSigner)
},
}
func init() {
RootCmd.AddCommand(serveCmd)
}