mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2025-12-26 15:50:47 -05:00
36 lines
773 B
Go
36 lines
773 B
Go
package command
|
|
|
|
import (
|
|
"os"
|
|
|
|
"github.com/opencloud-eu/opencloud/pkg/clihelper"
|
|
|
|
"github.com/urfave/cli/v2"
|
|
|
|
"github.com/opencloud-eu/opencloud/services/graph/pkg/config"
|
|
)
|
|
|
|
// GetCommands provides all commands for this service
|
|
func GetCommands(cfg *config.Config) cli.Commands {
|
|
return append([]*cli.Command{
|
|
// start this service
|
|
Server(cfg),
|
|
|
|
// interaction with this service
|
|
|
|
// infos about this service
|
|
Health(cfg),
|
|
Version(cfg),
|
|
}, UnifiedRoles(cfg)...)
|
|
}
|
|
|
|
// Execute is the entry point for the opencloud graph command.
|
|
func Execute(cfg *config.Config) error {
|
|
app := clihelper.DefaultApp(&cli.App{
|
|
Name: "graph",
|
|
Usage: "Serve Graph API for OpenCloud",
|
|
Commands: GetCommands(cfg),
|
|
})
|
|
return app.RunContext(cfg.Context, os.Args)
|
|
}
|