Handle requests for a page with an incapsula iframe.
(_scope: dict[str, Any], _receive: Receive, send: Send)
| 285 | |
| 286 | |
| 287 | async def incapsula_endpoint(_scope: dict[str, Any], _receive: Receive, send: Send) -> None: |
| 288 | """Handle requests for a page with an incapsula iframe.""" |
| 289 | await send_html_response( |
| 290 | send, |
| 291 | INCAPSULA, |
| 292 | ) |
| 293 | |
| 294 | |
| 295 | async def generic_response_endpoint(_scope: dict[str, Any], _receive: Receive, send: Send) -> None: |
nothing calls this directly
no test coverage detected