[CCSDK-28] populated the seed code for dgbuilder
[ccsdk/distribution.git] / dgbuilder / test / red / nodes / resources / NestedDirectoryNode / NestedNode / NestedNode.js
1 // A test node that exports a function
2 module.exports = function(RED) {
3     function TestNode(n) {}
4     RED.nodes.registerType("nested-node-1",TestNode);
5 }