Handle requests for the main page with links.
(_scope: dict[str, Any], _receive: Receive, send: Send)
| 269 | |
| 270 | |
| 271 | async def start_enqueue_endpoint(_scope: dict[str, Any], _receive: Receive, send: Send) -> None: |
| 272 | """Handle requests for the main page with links.""" |
| 273 | await send_html_response( |
| 274 | send, |
| 275 | START_ENQUEUE, |
| 276 | ) |
| 277 | |
| 278 | |
| 279 | async def secondary_index_endpoint(_scope: dict[str, Any], _receive: Receive, send: Send) -> None: |
nothing calls this directly
no test coverage detected