From 8a72639d45ab168048db8ef5b72bec60e7b75a96 Mon Sep 17 00:00:00 2001 From: Christian Richter Date: Tue, 10 Oct 2023 14:46:38 +0200 Subject: [PATCH] remove obsolete command registration file Signed-off-by: Christian Richter --- ocis/pkg/command/auth-service.go | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 ocis/pkg/command/auth-service.go diff --git a/ocis/pkg/command/auth-service.go b/ocis/pkg/command/auth-service.go deleted file mode 100644 index e0796e9b6..000000000 --- a/ocis/pkg/command/auth-service.go +++ /dev/null @@ -1,30 +0,0 @@ -package command - -import ( - "github.com/owncloud/ocis/v2/ocis-pkg/config" - "github.com/owncloud/ocis/v2/ocis-pkg/config/configlog" - "github.com/owncloud/ocis/v2/ocis-pkg/config/parser" - "github.com/owncloud/ocis/v2/ocis/pkg/command/helper" - "github.com/owncloud/ocis/v2/ocis/pkg/register" - "github.com/owncloud/ocis/v2/services/auth-service/pkg/command" - "github.com/urfave/cli/v2" -) - -// AuthServiceCommand is the entrypoint for the AuthService command. -func AuthServiceCommand(cfg *config.Config) *cli.Command { - return &cli.Command{ - Name: cfg.AuthService.Service.Name, - Usage: helper.SubcommandDescription(cfg.AuthService.Service.Name), - Category: "services", - Before: func(c *cli.Context) error { - configlog.Error(parser.ParseConfig(cfg, true)) - cfg.AuthService.Commons = cfg.Commons - return nil - }, - Subcommands: command.GetCommands(cfg.AuthService), - } -} - -func init() { - register.AddCommand(AuthServiceCommand) -}