5 lines
143 B
Python
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: ...
|