ASGI fastagency.base.ASGI # 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 251 252 253 254 255 256 257async 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: ...