(self, scope: Scope, receive: Receive, send: Send)
| 468 | self.app = app |
| 469 | |
| 470 | async def __call__(self, scope: Scope, receive: Receive, send: Send) -> None: |
| 471 | await self.app(scope, receive, send) |
| 472 | |
| 473 | class SimpleInitializableMiddleware: |
| 474 | counter = 0 |