From 6633cab98ec5a1c488d7651d4a17413023625f13 Mon Sep 17 00:00:00 2001 From: Tianyang Date: Sat, 1 Aug 2026 02:32:51 +0800 Subject: [PATCH] chore: wire documents router into main.py for testing --- backend/app/main.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/backend/app/main.py b/backend/app/main.py index cf08318..acc8b27 100644 --- a/backend/app/main.py +++ b/backend/app/main.py @@ -2,6 +2,7 @@ from fastapi import FastAPI from fastapi.middleware.cors import CORSMiddleware from app.config import settings +from app.routers import documents app = FastAPI(title="DocHub API") @@ -13,6 +14,8 @@ app.add_middleware( allow_headers=["*"], ) +app.include_router(documents.router) + @app.get("/health") def health():