2022-11-04 18:42:51 +09:00

8 lines
195 B
JavaScript

module.exports = function(RED) {
"use strict";
function GlobalConfigNode(n) {
RED.nodes.createNode(this,n);
}
RED.nodes.registerType("global-config", GlobalConfigNode);
}