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 (9 loc) • 339 B
JavaScript
const path = require('path');
module.exports = function(RED) {
RED.plugins.registerPlugin('chatbot-launch-mission-control', {
type: 'node-red'
});
RED.httpAdmin.get('/chatbot-launch-mission-control/redbot-logo.svg', function(req, res) {
res.sendFile(path.join(__dirname, '..', 'docs', 'logo', 'redbot-logo.svg'));
});
};