mirror of
https://github.com/node-red/node-red.git
synced 2025-03-01 10:36:34 +00:00
8 lines
195 B
JavaScript
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);
|
|
}
|