19 lines
369 B
Go
19 lines
369 B
Go
package server
|
|
|
|
import (
|
|
"forge.cadoles.com/cadoles/bouncer/internal/command/server/admin"
|
|
"forge.cadoles.com/cadoles/bouncer/internal/command/server/proxy"
|
|
"github.com/urfave/cli/v2"
|
|
)
|
|
|
|
func Root() *cli.Command {
|
|
return &cli.Command{
|
|
Name: "server",
|
|
Usage: "Server related commands",
|
|
Subcommands: []*cli.Command{
|
|
proxy.Root(),
|
|
admin.Root(),
|
|
},
|
|
}
|
|
}
|