Spaces:
Running
Running
File size: 183 Bytes
157e137 |
1 2 3 4 5 6 7 8 |
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
|