nonebot2/tests/test_plugins/test_metaevent.py
2020-08-24 17:59:36 +08:00

18 lines
397 B
Python

#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from nonebot.typing import Bot, Event
from nonebot.plugin import on_metaevent
async def heartbeat(bot: Bot, event: Event, state: dict) -> bool:
return event.detail_type == "heartbeat"
test_matcher = on_metaevent(heartbeat)
@test_matcher.receive()
async def handle_heartbeat(bot: Bot, event: Event, state: dict):
print("[i] Heartbeat")