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