2025-05-24 15:14:55 +00:00

10 lines
179 B
Python

from typing import Generator
from app.db.session import SessionLocal
def get_db() -> Generator:
db = SessionLocal()
try:
yield db
finally:
db.close()