2014-08-03 21:17:24 +01:00

6 lines
158 B
JavaScript

// A test node that exports a function
module.exports = function(RED) {
function TestNode(n) {}
RED.nodes.registerType("test-node-mod-1",TestNode);
}