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