8 lines
106 B
Python
8 lines
106 B
Python
from aiohttp import web
|
|
|
|
from .main import get_app
|
|
|
|
web.run_app(
|
|
get_app(), host='0.0.0.0', port=80
|
|
)
|