mirror of
https://github.com/nonebot/nonebot2.git
synced 2025-06-08 21:35:39 +00:00
5 lines
134 B
Python
5 lines
134 B
Python
from typing import Literal, Callable
|
|
|
|
Scope = Literal["PRIVATE", "DISCUSS", "GROUP", "ALL"]
|
|
Handler = Callable[["Event", dict], None]
|