from fastapi import FastAPI from app.routes.health import router as health_router app = FastAPI() app.include_router(health_router) @app.get("/") def root(): return {"app": "document-processor", "status": "running"}