plazbot-cli
Version:
CLI para Plazbot SDK
12 lines (11 loc) • 521 B
text/typescript
import { Command } from 'commander';
import { sendMessageCommand } from './send';
import { sendTemplateCommand } from './send-template';
import { registerWebhookCommand } from './register-webhook';
import { deleteWebhookCommand } from './delete-webhook';
export const whatsappCommands = new Command('whatsapp')
.description('Comandos relacionados con mensajes de WhatsApp')
.addCommand(sendMessageCommand)
.addCommand(sendTemplateCommand)
.addCommand(registerWebhookCommand)
.addCommand(deleteWebhookCommand);