emissary/internal/command/client/tenant/root.go
William Petit 954597d241
All checks were successful
arcad/emissary/pipeline/pr-master This commit looks good
feat: tenants querying
2024-02-27 17:01:24 +01:00

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(),
},
}
}