package agent import ( "forge.cadoles.com/Cadoles/emissary/internal/command/client/agent/spec" "github.com/urfave/cli/v2" ) func Root() *cli.Command { return &cli.Command{ Name: "agent", Usage: "Agents related commands", Subcommands: []*cli.Command{ QueryCommand(), CountCommand(), UpdateCommand(), GetCommand(), DeleteCommand(), ClaimCommand(), spec.Root(), }, } }