(scope: Scope, receive: Receive, send: Send)
| 55 | ) |
| 56 | |
| 57 | async def app(scope: Scope, receive: Receive, send: Send) -> None: |
| 58 | request = Request(scope, receive, send) |
| 59 | |
| 60 | async def app(scope: Scope, receive: Receive, send: Send) -> None: |
| 61 | response = await f(request) |
| 62 | await response(scope, receive, send) |
| 63 | |
| 64 | await wrap_app_handling_exceptions(app, request)(scope, receive, send) |
| 65 | |
| 66 | return app |
| 67 |
no test coverage detected