UNPKG
node-red-contrib-viseo-ms-authentication
Version:
latest (0.1.2)
0.1.2
0.1.1
0.1.0
0.0.2
0.0.1
VISEO Bot Maker - Microsoft Cognitive Services authentication
NGRP/node-red-contrib-viseo
node-red-contrib-viseo-ms-authentication
/
node-ms-config.js
12 lines
•
339 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
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"
} } }); }