UNPKG

@c78/node-red-contrib-wecom-group-chat-bot

Version:
12 lines (10 loc) 330 B
module.exports = function(RED) { function WeComConfig(config) { RED.nodes.createNode(this, config); var node = this; // 获取配置参数 node.name = config.name; node.webhook = config.webhook; } RED.nodes.registerType("wecom-config", WeComConfig); };