Start fixing forecast service API 8

This commit is contained in:
Urtzi Alfaro
2025-07-29 18:12:06 +02:00
parent fe88b696c2
commit 322f1743eb
4 changed files with 19 additions and 18 deletions

View File

@@ -89,8 +89,8 @@ app.add_middleware(
)
# Include API routers
app.include_router(forecasts.router, prefix="/api/v1/forecasts", tags=["forecasts"])
app.include_router(predictions.router, prefix="/api/v1/predictions", tags=["predictions"])
app.include_router(forecasts.router, prefix="/api/v1", tags=["forecasts"])
app.include_router(predictions.router, prefix="/api/v1", tags=["predictions"])
@app.get("/health")
async def health_check():