Test-bot / plugins /__init__.py
kgashok's picture
commit
19e1d1f
raw
history blame
No virus
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