esandorfi's picture
Domain features first reorganisation
68f48a7
raw
history blame contribute delete
226 Bytes
"""HF Spaces placeholder entrypoint.
HF Docker Spaces require an `app.py` file to exist. This shim is intentionally
tiny and forwards the actual ASGI app from `src/api/app.py`.
"""
from api.app import app
__all__ = ["app"]