File size: 283 Bytes
7a87926
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
"""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