2022-08-29 23:12:44 +08:00

11 lines
274 B
Python
Raw 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 ..all_import import * # noqa: F403,F401
HELP_IMG = Path(__file__).parent / 'help.png'
@sv.on_fullmatch('gs帮助')
async def send_guide_pic(bot, ev):
logger.info('获得gs帮助图片成功')
img = await convert_img(HELP_IMG)
await bot.send(ev, img)