(self, scope: Scope, receive: Receive, send: Send)
| 478 | SimpleInitializableMiddleware.counter += 1 |
| 479 | |
| 480 | async def __call__(self, scope: Scope, receive: Receive, send: Send) -> None: |
| 481 | await self.app(scope, receive, send) |
| 482 | |
| 483 | def get_app() -> ASGIApp: |
| 484 | app = Starlette() |