"""Backwards-compatible FastAPI entrypoint. Historically the project exposed `uvicorn ylff.api:app`. The unified application now lives in `ylff.app`. Keep this module as a thin shim so existing docs / Docker configs keep working. """ from .app import api_app as app # noqa: F401