9 lines
185 B
Python
9 lines
185 B
Python
from .asgi import ASGIMiddleware
|
|
from .wsgi import WSGIMiddleware
|
|
|
|
VERSION = (1, 10, 10)
|
|
|
|
__version__: str = ".".join(map(str, VERSION))
|
|
|
|
__all__ = ("WSGIMiddleware", "ASGIMiddleware")
|