rmi-backend/app/main.py
opencode e404e90c1a feat(rmi-backend,audit): add app/main.py entrypoint delegating to factory
Phase 1 of AUDIT-2026-Q3.md item P1.1.

app/main.py was referenced by Makefile, AGENTS.md, CONTRIBUTING.md,
and external `uvicorn app.main:app` invocations, but the file did not
exist (refactored to app/factory.py in a prior session — the docs were
never updated). This restores the canonical entrypoint.
2026-07-06 17:49:25 +02:00

11 lines
287 B
Python

"""RMI backend entrypoint.
Delegates to app.factory.create_app. Keeps `uvicorn app.main:app` working
as the canonical launch path referenced by Makefile, AGENTS.md, and
CONTRIBUTING.md.
Phase 1 of AUDIT-2026-Q3.md, item P1.1.
"""
from app.factory import create_app
app = create_app()