(self, scope: Scope, receive: Receive, send: Send)
| 75 | self.app = app |
| 76 | |
| 77 | async def __call__(self, scope: Scope, receive: Receive, send: Send) -> None: |
| 78 | instance = self.app(scope) |
| 79 | await instance(receive, send) |
| 80 | |
| 81 | |
| 82 | class _AsyncBackend(TypedDict): |