mirror of
https://github.com/nonebot/nonebot2.git
synced 2025-09-01 01:26:46 +00:00
8 lines
128 B
Python
8 lines
128 B
Python
from nonebot.adapters import Event
|
|
|
|
type AliasedEvent = Event
|
|
|
|
|
|
async def aliased_event(e: AliasedEvent) -> Event:
|
|
return e
|