"""Backend application entrypoint."""
from app.api.main import app
# Keep module behavior explicit so the backend flow stays easy to audit.
__all__ = ["app"]