7 lines
278 B
Python
7 lines
278 B
Python
"""Entry-point shim.
|
|
|
|
The real application lives in ``web/app.py``. This re-export keeps the launch
|
|
target stable at ``app:app`` (run from ``backend/``), so the systemd units,
|
|
run.sh, and CI need no change after the move into packages.
|
|
"""
|
|
from web.app import app # noqa: F401
|