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

11
node-red-grist/server.js Normal file
View file

@ -0,0 +1,11 @@
module.exports = function(RED) {
function ServerNode(n) {
RED.nodes.createNode(this,n);
this.hostname = n.hostname;
this.port = n.port;
this.tlsEnabled = n.tlsEnabled;
this.apiKey = n.apiKey
}
RED.nodes.registerType("server",ServerNode);
}