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
/
item.js
18 lines
(15 loc)
•
299 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
Item
extends
Com
{
constructor
(
) {
super
();
// 检索的文件路径
this
.
path
=
"/data/item"
.
fullname
();
// 文件拓展名
this
.
extension
=
"item.json"
; } }
module
.
exports
=
Item