UNPKG

plazbot-cli

Version:
12 lines (11 loc) 521 B
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);