mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-01-16 01:51:06 -05:00
41 lines
923 B
Go
41 lines
923 B
Go
package command
|
|
|
|
import (
|
|
"context"
|
|
"os"
|
|
"os/signal"
|
|
"syscall"
|
|
|
|
"github.com/opencloud-eu/opencloud/opencloud/pkg/register"
|
|
"github.com/opencloud-eu/opencloud/pkg/clihelper"
|
|
"github.com/opencloud-eu/opencloud/pkg/config"
|
|
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
// Execute is the entry point for the opencloud command.
|
|
func Execute() error {
|
|
cfg := config.DefaultConfig()
|
|
|
|
app := clihelper.DefaultApp(&cobra.Command{
|
|
Use: "opencloud",
|
|
Short: "opencloud",
|
|
})
|
|
|
|
for _, commandFactory := range register.Commands {
|
|
command := commandFactory(cfg)
|
|
|
|
if command.GroupID != "" && !app.ContainsGroup(command.GroupID) {
|
|
app.AddGroup(&cobra.Group{
|
|
ID: command.GroupID,
|
|
Title: command.GroupID,
|
|
})
|
|
}
|
|
|
|
app.AddCommand(command)
|
|
}
|
|
app.SetArgs(os.Args[1:])
|
|
ctx, _ := signal.NotifyContext(context.Background(), syscall.SIGINT, syscall.SIGTERM, syscall.SIGQUIT, syscall.SIGHUP)
|
|
return app.ExecuteContext(ctx)
|
|
}
|