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