nonebot2/tests/test_plugins/test_feishu.py
2021-07-05 11:10:49 +08:00

13 lines
397 B
Python

from nonebot.adapters.feishu.event import MessageEvent
from nonebot.rule import to_me
from nonebot.plugin import on_command
from nonebot.adapters.feishu import Bot as FeishuBot, MessageSegment, MessageEvent
helper = on_command("114514")
@helper.handle()
async def feishu_helper(bot: FeishuBot, event: MessageEvent):
message = MessageSegment.text("1919810")
await helper.finish(message)