node-red-contrib-chatbot
Version:
REDBot a Chat bot for a full featured chat bot for Telegram, Facebook Messenger and Slack. Almost no coding skills required
12 lines (10 loc) • 345 B
JavaScript
var ChatExpress = require('../lib/chat-platform/chat-platform');
module.exports = function(RED) {
function ChatBotSupportTable(config) {
RED.nodes.createNode(this, config);
this.on('input', function() {
ChatExpress.showCompatibilityChart();
});
}
RED.nodes.registerType('chatbot-support-table', ChatBotSupportTable);
};