File: __init__.py

package info (click to toggle)
python-a2wsgi 1.10.10-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 204 kB
  • sloc: python: 1,187; makefile: 4
file content (8 lines) | stat: -rw-r--r-- 185 bytes parent folder | download
1
2
3
4
5
6
7
8
from .asgi import ASGIMiddleware
from .wsgi import WSGIMiddleware

VERSION = (1, 10, 10)

__version__: str = ".".join(map(str, VERSION))

__all__ = ("WSGIMiddleware", "ASGIMiddleware")