(_: Request)
| 434 | await self.app(scope, receive, send) |
| 435 | |
| 436 | async def simple_endpoint(_: Request) -> PlainTextResponse: |
| 437 | return PlainTextResponse(background=BackgroundTask(sleep_and_set)) |
| 438 | |
| 439 | async def passthrough( |
| 440 | request: Request, |
nothing calls this directly
no test coverage detected