UNPKG

node-red-contrib-viseo-ms-authentication

Version:

VISEO Bot Maker - Microsoft Cognitive Services authentication

12 lines 339 B
module.exports = function(RED) { const register = function (config) { RED.nodes.createNode(this, config); this.name = config.name; } RED.nodes.registerType("ms-config", register, { credentials: { key: { type: "text" }, region: { type: "text" } } }); }