FileToLink / Thunder /server /__init__.py
Fyaz Mohammed
2.0.0
17cac08 unverified
Raw
History Blame Contribute Delete
238 Bytes
# Thunder/server/__init__.py
from aiohttp import web
from .stream_routes import routes
async def web_server():
web_app = web.Application(client_max_size=50 * 1024 * 1024)
web_app.add_routes(routes)
return web_app