Code import

This commit is contained in:
Jan Groß
2017-07-20 18:02:16 +02:00
parent 2ab406905d
commit 5c348ffe84
1807 changed files with 257494 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
import sys
from .middleware import Middleware
from .server import Server
if sys.version_info >= (3, 5): # pragma: no cover
from .asyncio_server import AsyncServer
else: # pragma: no cover
AsyncServer = None
__version__ = '1.7.0'
__all__ = ['__version__', 'Middleware', 'Server']
if AsyncServer is not None: # pragma: no cover
__all__.append('AsyncServer')