mirror of
https://github.com/rjNemo/fastapi
synced 2026-06-07 19:16:43 +00:00
3 lines
118 B
Python
3 lines
118 B
Python
from typing import Any, Callable, TypeVar
|
|
|
|
DecoratedCallable = TypeVar("DecoratedCallable", bound=Callable[..., Any])
|