UNPKG

mm_chatbot

Version:

这是超级美眉QQ+微信机器人框架,用于开发个人微信聊天、群管机器人

18 lines (15 loc) 306 B
const path = require('path'); const Com = require("./com.js"); /** * 用户群 */ class Group extends Com { constructor() { super(); // 检索的文件路径 this.path = "/data/group".fullname(); // 文件拓展名 this.extension = "group.json"; } } module.exports = Group