Files
openapi-first/openapi_first/binder.pyi

12 lines
244 B
Python

from types import ModuleType
from typing import Any
from fastapi import FastAPI
def bind_routes(
app: FastAPI,
spec: dict[str, Any],
routes_module: ModuleType,
security_deps: dict[str, list[Any]] | None = None,
) -> None: ...