Fix imports

This commit is contained in:
Urtzi Alfaro
2025-07-18 14:41:39 +02:00
parent a469f0c01d
commit 4073222888
30 changed files with 123 additions and 119 deletions

View File

@@ -2,7 +2,7 @@
uLuforecasting Service
"""
import logging
import structlog
from fastapi import FastAPI
from fastapi.middleware.cors import CORSMiddleware
@@ -13,7 +13,7 @@ from shared.monitoring.metrics import MetricsCollector
# Setup logging
setup_logging("forecasting-service", "INFO")
logger = logging.getLogger(__name__)
logger = structlog.get_logger()
# Create FastAPI app
app = FastAPI(