Add quality template logic

This commit is contained in:
Urtzi Alfaro
2025-09-24 16:42:23 +02:00
parent 474d7176bf
commit 2de1e6ce40
11 changed files with 450 additions and 228 deletions

View File

@@ -14,7 +14,6 @@ import structlog
from app.core.config import settings
from app.core.database import init_database, get_db_health
from app.api.production import router as production_router
from app.api.quality_templates import router as quality_templates_router
from app.services.production_alert_service import ProductionAlertService
# Configure logging
@@ -74,7 +73,6 @@ app.add_middleware(
# Include routers
app.include_router(production_router, prefix="/api/v1")
app.include_router(quality_templates_router, prefix="/api/v1")
@app.get("/health")