2023-04-24 20:52:12 +02:00
|
|
|
package server
|
|
|
|
|
|
|
|
import (
|
|
|
|
"forge.cadoles.com/cadoles/bouncer/internal/command/server/admin"
|
2024-04-12 16:41:11 +02:00
|
|
|
"forge.cadoles.com/cadoles/bouncer/internal/command/server/dummy"
|
2023-04-24 20:52:12 +02:00
|
|
|
"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(),
|
2024-04-12 16:41:11 +02:00
|
|
|
dummy.Root(),
|
2023-04-24 20:52:12 +02:00
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|