bouncer/internal/command/admin/root.go

18 lines
303 B
Go
Raw Normal View History

2023-04-24 20:52:12 +02:00
package admin
import (
"forge.cadoles.com/cadoles/bouncer/internal/command/admin/auth"
"github.com/urfave/cli/v2"
)
func Root() *cli.Command {
return &cli.Command{
Name: "admin",
Usage: "Admin server related commands",
Subcommands: []*cli.Command{
RunCommand(),
auth.Root(),
},
}
}