ASGIProtocol fastagency.base.ASGIProtocol # Bases: Protocol handle_asgi async # handle_asgi( app: Runnable, scope: dict[str, Any], receive: Callable[[dict[str, Any]], Awaitable[None]], send: Callable[[dict[str, Any]], Awaitable[None]], ) -> None Source code in fastagency/base.py 306 307 308 309 310 311 312async def handle_asgi( self, app: "Runnable", scope: dict[str, Any], receive: Callable[[dict[str, Any]], Awaitable[None]], send: Callable[[dict[str, Any]], Awaitable[None]], ) -> None: ...