file / plugins /__init__.py
Kanhshsh's picture
Upload 60 files
b00d2c6 verified
raw
history blame contribute delete
182 Bytes
from aiohttp import web
from .route import routes
async def web_server():
web_app = web.Application(client_max_size=30000000)
web_app.add_routes(routes)
return web_app