Skip to content

WSGIProtocol

fastagency.base.WSGIProtocol #

Bases: Protocol

handle_wsgi #

handle_wsgi(
    app: Runnable,
    environ: dict[str, Any],
    start_response: Callable[..., Any],
) -> list[bytes]
Source code in fastagency/base.py
def handle_wsgi(
    self,
    app: "Runnable",
    environ: dict[str, Any],
    start_response: Callable[..., Any],
) -> list[bytes]: ...