mirror of
https://github.com/fastapi-users/fastapi-users.git
synced 2025-08-14 18:58:10 +08:00
8 lines
191 B
Python
8 lines
191 B
Python
from typing import Callable, Coroutine, TypeVar, Union
|
|
|
|
RETURN_TYPE = TypeVar("RETURN_TYPE")
|
|
|
|
DependencyCallable = Callable[
|
|
..., Union[RETURN_TYPE, Coroutine[None, None, RETURN_TYPE]]
|
|
]
|