Files
2025-12-26 22:41:42 +08:00

23 lines
802 B
Python
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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,
)