Add project setup

This commit is contained in:
2025-07-23 14:07:42 +02:00
parent e10083278e
commit 4362471a73
5 changed files with 209 additions and 0 deletions

6
liquidFlowHandler.js Normal file
View File

@@ -0,0 +1,6 @@
module.exports = function(RED) {
function liquidFlowHandler(config) {
RED.nodes.createNode(this, config);
}
RED.nodes.registerType("liquidFlowHandler", liquidFlowHandler);
};