Handle requests for the robots.txt file.
(_scope: dict[str, Any], _receive: Receive, send: Send)
| 413 | |
| 414 | |
| 415 | async def robots_txt(_scope: dict[str, Any], _receive: Receive, send: Send) -> None: |
| 416 | """Handle requests for the robots.txt file.""" |
| 417 | await send_html_response(send, ROBOTS_TXT) |
| 418 | |
| 419 | |
| 420 | async def get_compressed(_scope: dict[str, Any], _receive: Receive, send: Send) -> None: |
nothing calls this directly
no test coverage detected