initial commit

This commit is contained in:
Michael Kolb 2023-01-07 02:33:42 +01:00
parent 4ecbaa612a
commit 3b102ee4f6
9 changed files with 238 additions and 2 deletions

View file

@ -0,0 +1,8 @@
module.exports = function(RED) {
function DocumentNode(n) {
RED.nodes.createNode(this,n);
this.docid = n.docid;
this.name = n.name;
}
RED.nodes.registerType("document",DocumentNode);
}