Move node registry to its own top level dir

This commit is contained in:
Nick O'Leary
2018-04-26 12:32:05 +01:00
parent 5866d414ce
commit 11d87205d7
63 changed files with 674 additions and 584 deletions

View File

@@ -0,0 +1,5 @@
// A test node that exports a function
module.exports = function(RED) {
function DuffNode(n) {}
RED.nodes.registerType("duff-node",DuffNode);
}