mirror of
https://github.com/TriM-Organization/LiteyukiBot-TriM.git
synced 2024-11-11 09:37:29 +08:00
11 lines
250 B
Python
11 lines
250 B
Python
|
from nonebot.adapters import satori
|
||
|
|
||
|
from liteyuki.utils.base.ly_typing import T_MessageEvent
|
||
|
|
||
|
|
||
|
def get_user_id(event: T_MessageEvent):
|
||
|
if isinstance(event, satori.event.Event):
|
||
|
return event.user.id
|
||
|
else:
|
||
|
return event.user_id
|