9 lines
200 B
Python
9 lines
200 B
Python
from typing import Any
|
|
|
|
from fastapi import FastAPI
|
|
|
|
class OpenAPIFirstApp(FastAPI):
|
|
def __init__(
|
|
self, *, openapi_path: str, routes_module: Any, **fastapi_kwargs: Any
|
|
) -> None: ...
|