package client import ( "forge.cadoles.com/cadoles/bouncer/internal/command/client/proxy" "github.com/urfave/cli/v2" ) func Root() *cli.Command { return &cli.Command{ Name: "client", Usage: "Admin API related commands", Subcommands: []*cli.Command{ proxy.Root(), }, } }