首次提交
This commit is contained in:
22
danding_bot/plugins/danding_api/__init__.py
Normal file
22
danding_bot/plugins/danding_api/__init__.py
Normal file
@@ -0,0 +1,22 @@
|
||||
from nonebot import get_driver
|
||||
from nonebot.plugin import PluginMetadata
|
||||
from .config import Config
|
||||
from . import admin
|
||||
|
||||
__plugin_meta__ = PluginMetadata(
|
||||
name="danding_api",
|
||||
description="咸鸭蛋API管理插件,提供卡密管理和用户管理功能",
|
||||
usage="""
|
||||
超级用户指令:
|
||||
/咸鸭蛋 (或 /apihelp, /sudhelp) - 显示帮助信息
|
||||
/添加卡密 <类型> <卡密> (或 /addkami, /akm) - 添加指定类型的卡密
|
||||
/生成卡密 <类型> (或 /createkami, /ckm) - 生成指定类型的卡密
|
||||
/用户加时 <用户名> <类型> (或 /addviptime, /avt) - 为指定用户添加会员时间
|
||||
/生成QQ验证码 <QQ号> (或 /qqvcode, /gqvc) - 生成QQ绑定验证码
|
||||
|
||||
普通用户指令:
|
||||
/在线人数 (或 /ddonline, /ddop) - 查看当前在线人数
|
||||
""",
|
||||
config=Config,
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user