UNPKG

prisme-flow

Version:

prisme platform flow engine

13 lines (11 loc) 262 B
/** * Created by prisme.io on 09/06/2017. */ module.exports = function (RED) { function RemoteServerNode (n) { RED.nodes.createNode(this, n) this.host = n.host this.port = n.port } RED.nodes.registerType('remote-server', RemoteServerNode) }