TGFS / FileStream /server /__init__.py
AZLABS's picture
Upload 30 files
79a6766 verified
raw
history blame contribute delete
190 Bytes
from aiohttp import web
from .stream_routes import routes
def web_server():
web_app = web.Application(client_max_size=30000000)
web_app.add_routes(routes)
return web_app