6 lines
100 B
Python
6 lines
100 B
Python
from aiohttp import web
|
|
|
|
from .main import get_app
|
|
|
|
web.run_app(get_app(), host="0.0.0.0", port=80)
|