nonebot2/nonebot/typing.py

5 lines
134 B
Python
Raw Normal View History

2020-05-02 20:03:36 +08:00
from typing import Literal, Callable
2018-10-16 01:03:50 +08:00
2020-05-02 20:03:36 +08:00
Scope = Literal["PRIVATE", "DISCUSS", "GROUP", "ALL"]
Handler = Callable[["Event", dict], None]