From 64cc438bcc45030b188e54e1c9a6198caaffa70b Mon Sep 17 00:00:00 2001 From: kitos Date: Thu, 11 Jun 2026 11:23:51 +0200 Subject: [PATCH] fix(main): restore missing settings import lost in merge conflict resolution --- backend/app/main.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/backend/app/main.py b/backend/app/main.py index 6d02982..2095821 100644 --- a/backend/app/main.py +++ b/backend/app/main.py @@ -178,6 +178,9 @@ from app.routers import worklogs as worklogs_router # Import ensure_bucket_exists from app.storage from app.storage import ensure_bucket_exists +# Import settings as _settings from app.config +from app.config import settings as _settings + # Configure structured logging before any module initialises its own logger setup_logging()