"""Link — DB bridge for the fixture invoicing app. Exposes a small HTTP API that wraps SQLAlchemy access to the fixture's postgres so soleprint tools can read/write without touching the app. """ from fastapi import FastAPI from adapters.sqlalchemy_bridge import router as db_router app = FastAPI(title="Link — Fixture Bridge") @app.get("/health") def health(): return {"status": "ok", "target": "fixture-invoicing"} app.include_router(db_router, prefix="/db")