Files
openapi-first/openapi_first/binder.pyi

5 lines
143 B
Python

from typing import Any, Dict
from fastapi import FastAPI
def bind_routes(app: FastAPI, spec: Dict[str, Any], routes_module: Any) -> None: ...