UNPKG

plazbot-cli

Version:
23 lines (22 loc) 893 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.agentCommands = void 0; const commander_1 = require("commander"); const list_1 = require("./list"); const get_1 = require("./get"); const delete_1 = require("./delete"); const create_1 = require("./create"); const update_1 = require("./update"); const enable_widget_1 = require("./enable-widget"); const chat_1 = require("./chat"); const on_message_1 = require("./on-message"); exports.agentCommands = new commander_1.Command('agent') .description('Comandos relacionados con agentes') .addCommand(list_1.listCommand) .addCommand(get_1.getCommand) .addCommand(delete_1.deleteCommand) .addCommand(create_1.createCommand) .addCommand(update_1.updateCommand) .addCommand(enable_widget_1.enableCommand) .addCommand(chat_1.chatCommand) .addCommand(on_message_1.messageCommand);