Files
opencloud/ocis/pkg/command/auth-machine.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
862 B
Go

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