sessionservice/app/__main__.py
2023-10-02 17:01:04 +00:00

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)