package tenant import ( "github.com/urfave/cli/v2" ) func Root() *cli.Command { return &cli.Command{ Name: "tenant", Usage: "Tenants related commands", Subcommands: []*cli.Command{ CreateCommand(), GetCommand(), UpdateCommand(), DeleteCommand(), QueryCommand(), }, } }