ph4 #53

Merged
mo merged 19 commits from ph4 into prod 2025-06-04 17:51:17 +02:00
Showing only changes of commit 92c70813fb - Show all commits

View File

@ -182,10 +182,13 @@ app.include_router(
)
# Include OAuth routes
app.include_router(oauth_router, prefix="/auth", tags=["auth"])
# app.include_router(oauth_router, prefix="/auth", tags=["auth"])
# Include your API router
app.include_router(api_router, prefix=settings.API_PREFIX)
# Include OAuth routes under the main API prefix
app.include_router(oauth_router, prefix=f"{settings.API_PREFIX}/auth", tags=["auth"])
# --- End Include API Routers ---
# Health check endpoint