(request: Request)
| 172 | events: list[Message] = [] |
| 173 | |
| 174 | async def endpoint_with_pathsend(request: Request) -> FileResponse: |
| 175 | _ = await request.body() |
| 176 | return FileResponse(path) |
| 177 | |
| 178 | app = Starlette( |
| 179 | routes=[Route("/", endpoint=endpoint_with_pathsend)], |
nothing calls this directly
no test coverage detected