from starlette.responses import HTMLResponse def get_swagger_ui_html(*, openapi_url: str, title: str) -> HTMLResponse: return HTMLResponse( """ """ + title + """
""" ) def get_redoc_html(*, openapi_url: str, title: str) -> HTMLResponse: return HTMLResponse( """ """ + title + """ """ )