nonebot2/nonebot/typing.py
2020-05-02 20:03:36 +08:00

5 lines
134 B
Python

from typing import Literal, Callable
Scope = Literal["PRIVATE", "DISCUSS", "GROUP", "ALL"]
Handler = Callable[["Event", dict], None]