Handle requests for the resource loading page.
(_scope: dict[str, Any], _receive: Receive, send: Send)
| 448 | |
| 449 | |
| 450 | async def resource_loading_endpoint(_scope: dict[str, Any], _receive: Receive, send: Send) -> None: |
| 451 | """Handle requests for the resource loading page.""" |
| 452 | await send_html_response( |
| 453 | send, |
| 454 | RESOURCE_LOADING_PAGE, |
| 455 | ) |
| 456 | |
| 457 | |
| 458 | async def base_index_endpoint(_scope: dict[str, Any], _receive: Receive, send: Send) -> None: |
nothing calls this directly
no test coverage detected