mirror of
https://github.com/nonebot/nonebot2.git
synced 2024-11-24 09:05:04 +08: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]
|