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