From 670613c1743d5a493729ef696ebc93396c628cb5 Mon Sep 17 00:00:00 2001 From: nightbug-xx Date: Mon, 9 Jun 2025 16:09:08 +0900 Subject: [PATCH] Remove duplicate SessionLocal declaration --- app/core/database.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/app/core/database.py b/app/core/database.py index 52c84af..a6d47f0 100644 --- a/app/core/database.py +++ b/app/core/database.py @@ -22,5 +22,3 @@ def get_db(): finally: db.close() -# 세션 클래스 생성 -SessionLocal = sessionmaker(autocommit=False, autoflush=False, bind=engine) \ No newline at end of file