UNPKG

plazbot-cli

Version:
20 lines (19 loc) 701 B
import { Command } from 'commander'; import { listCommand } from './list'; import { getCommand } from './get'; import { deleteCommand } from './delete'; import { createCommand } from './create'; import { updateCommand } from './update'; import { enableCommand } from './enable-widget'; import { chatCommand } from './chat'; import { messageCommand } from './on-message'; export const agentCommands = new Command('agent') .description('Comandos relacionados con agentes') .addCommand(listCommand) .addCommand(getCommand) .addCommand(deleteCommand) .addCommand(createCommand) .addCommand(updateCommand) .addCommand(enableCommand) .addCommand(chatCommand) .addCommand(messageCommand);