bouncer/internal/command/server/proxy/root.go

16 lines
222 B
Go
Raw Normal View History

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