Implemented logging configuration

This commit is contained in:
2026-03-01 14:12:44 +02:00
parent e4345ddc50
commit 04a2f5a46b
3 changed files with 19 additions and 5 deletions
+1 -3
View File
@@ -1,12 +1,10 @@
from fastapi.testclient import TestClient
from app.main import app
import sys
import os
# Add the 'app' folder to the sys.path
sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), '..')))
from app.main import app # Now this should work correctly
from app.main import app
client = TestClient(app)