UNPKG

plazbot-cli

Version:
15 lines (14 loc) 690 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.messageCommands = void 0; const commander_1 = require("commander"); const send_1 = require("./send"); const send_template_1 = require("./send-template"); const register_webhook_1 = require("./register-webhook"); const delete_webhook_1 = require("./delete-webhook"); exports.messageCommands = new commander_1.Command('message') .description('Comandos relacionados con mensajes de WhatsApp') .addCommand(send_1.sendMessageCommand) .addCommand(send_template_1.sendTemplateCommand) .addCommand(register_webhook_1.registerWebhookCommand) .addCommand(delete_webhook_1.deleteWebhookCommand);