Handle requests with a page containing non-href links.
(_scope: dict[str, Any], _receive: Receive, send: Send)
| 309 | |
| 310 | |
| 311 | async def non_href_links_endpoint(_scope: dict[str, Any], _receive: Receive, send: Send) -> None: |
| 312 | """Handle requests with a page containing non-href links.""" |
| 313 | await send_html_response( |
| 314 | send, |
| 315 | NON_HREF_LINKS, |
| 316 | ) |
| 317 | |
| 318 | |
| 319 | async def redirect_to_url(scope: dict[str, Any], _receive: Receive, send: Send) -> None: |
nothing calls this directly
no test coverage detected