William Petit
954597d241
All checks were successful
arcad/emissary/pipeline/pr-master This commit looks good
20 lines
298 B
Go
20 lines
298 B
Go
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(),
|
|
},
|
|
}
|
|
}
|