Handle requests with a generic HTML response.
(_scope: dict[str, Any], _receive: Receive, send: Send)
| 293 | |
| 294 | |
| 295 | async def generic_response_endpoint(_scope: dict[str, Any], _receive: Receive, send: Send) -> None: |
| 296 | """Handle requests with a generic HTML response.""" |
| 297 | await send_html_response( |
| 298 | send, |
| 299 | GENERIC_RESPONSE, |
| 300 | ) |
| 301 | |
| 302 | |
| 303 | async def problematic_links_endpoint(_scope: dict[str, Any], _receive: Receive, send: Send) -> None: |
nothing calls this directly
no test coverage detected