Files
opencloud/services/groupware/pkg/command/root.go
2026-02-04 09:41:03 +01:00

35 lines
752 B
Go

package command
import (
"os"
"github.com/opencloud-eu/opencloud/pkg/clihelper"
"github.com/opencloud-eu/opencloud/services/groupware/pkg/config"
"github.com/spf13/cobra"
)
// GetCommands provides all commands for this service
func GetCommands(cfg *config.Config) []*cobra.Command {
return []*cobra.Command{
// start this service
Server(cfg),
// infos about this service
// Health(cfg),
Version(cfg),
}
}
// Execute is the entry point for the opencloud group command.
func Execute(cfg *config.Config) error {
app := clihelper.DefaultApp(&cobra.Command{
Use: "groupware",
Short: "Groupware service for OpenCloud",
})
app.AddCommand(GetCommands(cfg)...)
app.SetArgs(os.Args[1:])
return app.ExecuteContext(cfg.Context)
}