emissary/internal/command/client/tenant/root.go

20 lines
298 B
Go
Raw Normal View History

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(),
2024-02-27 15:30:21 +01:00
DeleteCommand(),
2024-02-27 17:01:24 +01:00
QueryCommand(),
},
}
}