mirror of
https://github.com/zhenxun-org/zhenxun_bot.git
synced 2025-12-15 14:22:55 +08:00
28 lines
734 B
Python
Executable File
28 lines
734 B
Python
Executable File
from nonebot import on_command
|
|
from nonebot.permission import SUPERUSER
|
|
from nonebot.rule import to_me
|
|
from configs.path_config import IMAGE_PATH
|
|
from utils.message_builder import image
|
|
from .data_source import create_help_image
|
|
|
|
|
|
__zx_plugin_name__ = '超级用户帮助 [Superuser]'
|
|
|
|
|
|
superuser_help_image = IMAGE_PATH / 'superuser_help.png'
|
|
|
|
if superuser_help_image.exists():
|
|
superuser_help_image.unlink()
|
|
|
|
super_help = on_command(
|
|
"超级用户帮助", rule=to_me(), priority=1, permission=SUPERUSER, block=True
|
|
)
|
|
|
|
|
|
@super_help.handle()
|
|
async def _():
|
|
if not superuser_help_image.exists():
|
|
await create_help_image()
|
|
x = image(superuser_help_image)
|
|
await super_help.finish(x)
|