Files
2026-07-13 12:47:58 +08:00

8 lines
159 B
Python

from typing import TypeVar, Union, Callable, Awaitable
T = TypeVar("T")
OutputHandler = Union[
Callable[[T], None],
Callable[[T], Awaitable[None]],
]