()
| 29 | |
| 30 | @app.get("/redoc", include_in_schema=False) |
| 31 | async def redoc_html(): |
| 32 | return get_redoc_html( |
| 33 | openapi_url=app.openapi_url, |
| 34 | title=app.title + " - ReDoc", |
| 35 | redoc_js_url="/static/redoc.standalone.js", |
| 36 | ) |
| 37 | |
| 38 | |
| 39 | @app.get("/users/{username}") |
nothing calls this directly
no test coverage detected
searching dependent graphs…