bouncer/internal/command/auth/root.go

16 lines
230 B
Go
Raw Normal View History

2023-04-24 20:52:12 +02:00
package auth
import (
"github.com/urfave/cli/v2"
)
func Root() *cli.Command {
return &cli.Command{
Name: "auth",
Usage: "Authentication related commands",
Subcommands: []*cli.Command{
CreateTokenCommand(),
},
}
}