Merge pull request #2 from nightbug-xx/codex/중복된-sessionlocal-선언-제거

Fix duplicate SessionLocal in database module
This commit is contained in:
nightbug-xx 2025-06-09 16:09:24 +09:00 committed by GitHub
commit 75711ab7cb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -22,5 +22,3 @@ def get_db():
finally:
db.close()
# 세션 클래스 생성
SessionLocal = sessionmaker(autocommit=False, autoflush=False, bind=engine)