(request: Request, exc: HTTPException)
| 34 | |
| 35 | |
| 36 | async def http_exception(request: Request, exc: HTTPException) -> JSONResponse: |
| 37 | return JSONResponse({class="st">"detail": exc.detail}, status_code=exc.status_code) |
| 38 | |
| 39 | |
| 40 | def func_homepage(request: Request) -> PlainTextResponse: |
nothing calls this directly
no test coverage detected