__init__.py 148 B

123456
  1. from __future__ import annotations
  2. __all__ = ["ASGITransport", "WSGITransport"]
  3. from ._asgi import ASGITransport
  4. from ._wsgi import WSGITransport