Files
2025-11-24 02:14:25 +01:00

9 lines
132 B
Python

from .database import SessionLocal
def get_db():
db = SessionLocal()
try:
yield db
finally:
db.close()