UNPKG
mm_chatbot
Version:
latest (1.0.1)
1.0.1
1.0.0
这是超级美眉QQ+微信机器人框架,用于开发个人微信聊天、群管机器人
github.com/qiuwenwu/mm_chatbot
qiuwenwu/mm_chatbot
mm_chatbot
/
com
/
group.js
18 lines
(15 loc)
•
306 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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