Miguel Grinberg
3 years ago
No known key found for this signature in database
GPG Key ID: 36848B262DF5F06C
1 changed files with
6 additions and
2 deletions
-
examples/server/aiohttp/app.py
|
|
@ -78,6 +78,10 @@ app.router.add_static('/static', 'static') |
|
|
|
app.router.add_get('/', index) |
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__': |
|
|
|
async def init_app(): |
|
|
|
sio.start_background_task(background_task) |
|
|
|
web.run_app(app) |
|
|
|
return app |
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__': |
|
|
|
web.run_app(init_app()) |
|
|
|