from fastapi import FastAPI from app.routes import ingest_router app = FastAPI() app.include_router(ingest_router) @app.get("/") def health_check(): return {"status": "ok"}