()
| 13 | |
| 14 | @app.get("/docs", include_in_schema=False) |
| 15 | async def custom_swagger_ui_html(): |
| 16 | return get_swagger_ui_html( |
| 17 | openapi_url=app.openapi_url, |
| 18 | title=app.title + " - Swagger UI", |
| 19 | oauth2_redirect_url=app.swagger_ui_oauth2_redirect_url, |
| 20 | swagger_js_url="/static/swagger-ui-bundle.js", |
| 21 | swagger_css_url="/static/swagger-ui.css", |
| 22 | ) |
| 23 | |
| 24 | |
| 25 | @app.get(app.swagger_ui_oauth2_redirect_url, include_in_schema=False) |
nothing calls this directly
no test coverage detected
searching dependent graphs…