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 330 331 332 333 334 335 336async 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: ...