plazbot-cli
Version:
CLI para Plazbot SDK
20 lines (19 loc) • 701 B
text/typescript
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);