def __init__(self, routes, app_name, loop=None):
self.app = aiohttp.web.Application()
self.app_name = app_name
# TODO(seirl): integrate with HANDLED_URLS
for route in routes:
self.app.router.add_route(*route)
self.loop = loop or asyncio.get_event_loop()
评论列表
文章目录