mm_chatbot
Version:
这是超级美眉QQ+微信机器人框架,用于开发个人微信聊天、群管机器人
25 lines (23 loc) • 403 B
JavaScript
/**
* 公共类
*/
class Common {
/**
* 构造函数
* @param {Object} config 配置参数
*/
constructor(config) {
this.config = {
account: 'defualt'
};
this.init(config);
}
}
/**
* 初始化
* @param {Object} config 配置参数
*/
Common.prototype.init = function(config) {
this.config = Object.assign(this.config, config);
}
module.exports = Common;