Skip to content

Commit 80970cc

Browse files
committed
feat: register all endpoints and routing
1 parent 9823585 commit 80970cc

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

Backend/app/main.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
from .routes.match import router as match_router
99
from .routes.brand_dashboard import router as brand_dashboard_router
1010
from .routes.ai_query import router as ai_query_router
11+
from .routes.contracts import router as contracts_router
1112
from sqlalchemy.exc import SQLAlchemyError
1213
import logging
1314
import os
@@ -58,6 +59,7 @@ async def lifespan(app: FastAPI):
5859
app.include_router(match_router)
5960
app.include_router(brand_dashboard_router)
6061
app.include_router(ai_query_router)
62+
app.include_router(contracts_router)
6163
app.include_router(ai.router)
6264
app.include_router(ai.youtube_router)
6365

0 commit comments

Comments
 (0)