UNPKG
mumu-bot
Version:
latest (1.0.1-beta.2)
1.0.1-beta.2
1.0.1-beta.1
1.0.1-beta.0
1.0.0
QQ bot framework, based on mirai-api-http
mumu-bot
/
dist
/
plugins
/
help.mjs
10 lines
(9 loc)
•
195 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{ definePlugin }
from
"./index.mjs"
;
export
default
definePlugin
({
name
:
"Help"
,
load
:
(
bot
) =>
{ bot.
command
(
"help"
,
(
ctx
) =>
{ ctx.
reply
(
"Bot help text."
); }); } });