UNPKG

node-red-contrib-tekosbot

Version:

Tekos bot based on matrix

12 lines 354 B
module.exports = function(RED) { const register = function (config) { RED.nodes.createNode(this, config); this.name = config.name; } RED.nodes.registerType("tekosbot-dialogflow-config", register, { credentials: { clienttoken: { type:"text" }, devtoken: { type:"text" } } }); }