Files
opencloud/ocis/pkg/command/auth-bearer.go
Christian Richter 87b7a102ba remove returns from the commands to prevent silent crash
Signed-off-by: Christian Richter <crichter@owncloud.com>
2022-05-11 14:58:52 +02:00

33 lines
853 B
Go

package command
import (
"fmt"
"github.com/owncloud/ocis/v2/extensions/auth-bearer/pkg/command"
"github.com/owncloud/ocis/v2/ocis-pkg/config"
"github.com/owncloud/ocis/v2/ocis-pkg/config/parser"
"github.com/owncloud/ocis/v2/ocis/pkg/register"
"github.com/urfave/cli/v2"
)
// AuthBearerCommand is the entrypoint for the AuthBearer command.
func AuthBearerCommand(cfg *config.Config) *cli.Command {
return &cli.Command{
Name: cfg.AuthBearer.Service.Name,
Usage: subcommandDescription(cfg.AuthBearer.Service.Name),
Category: "extensions",
Before: func(c *cli.Context) error {
if err := parser.ParseConfig(cfg); err != nil {
fmt.Printf("%v", err)
}
cfg.AuthBearer.Commons = cfg.Commons
return nil
},
Subcommands: command.GetCommands(cfg.AuthBearer),
}
}
func init() {
register.AddCommand(AuthBearerCommand)
}