UNPKG

plazbot-cli

Version:
23 lines (22 loc) 908 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.portalCommands = void 0; const commander_1 = require("commander"); const get_1 = require("./get"); const delete_1 = require("./delete"); const create_1 = require("./create"); const update_1 = require("./update"); const add_agent_1 = require("./add-agent"); const list_1 = require("./list"); const add_link_1 = require("./add-link"); const clear_links_1 = require("./clear-links"); exports.portalCommands = new commander_1.Command('portal') .description('Comandos relacionados con portales') .addCommand(list_1.listCommand) .addCommand(get_1.getCommand) .addCommand(delete_1.deleteCommand) .addCommand(create_1.createCommand) .addCommand(update_1.updateCommand) .addCommand(add_agent_1.addAgentCommand) .addCommand(add_link_1.addLinkCommand) .addCommand(clear_links_1.clearLinksCommand);