(self, scope: Scope, receive: Receive, send: Send)
| 1749 | ) |
| 1750 | |
| 1751 | async def handle(self, scope: Scope, receive: Receive, send: Send) -> None: |
| 1752 | _get_fastapi_scope(scope)[_FASTAPI_INCLUDED_ROUTER_KEY] = self |
| 1753 | await self.original_router.handle(scope, receive, send) |
| 1754 | |
| 1755 | async def _handle_selected( |
| 1756 | self, scope: Scope, receive: Receive, send: Send |
nothing calls this directly
no test coverage detected