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

22 lines
396 B
Go

package proxy
import (
"forge.cadoles.com/cadoles/bouncer/internal/command/client/proxy/layer"
"github.com/urfave/cli/v2"
)
func Root() *cli.Command {
return &cli.Command{
Name: "proxy",
Usage: "Execute actions related to proxies",
Subcommands: []*cli.Command{
GetCommand(),
CreateCommand(),
QueryCommand(),
DeleteCommand(),
UpdateCommand(),
layer.Root(),
},
}
}