(_: Request)
| 279 | background_task_run.set() |
| 280 | |
| 281 | async def endpoint_with_background_task(_: Request) -> PlainTextResponse: |
| 282 | return PlainTextResponse(background=BackgroundTask(sleep_and_set)) |
| 283 | |
| 284 | async def passthrough( |
| 285 | request: Request, |
nothing calls this directly
no test coverage detected