Automated Action d2d0b364aa Create Todo application with FastAPI and SQLAlchemy
Generated with and Co-Authored by [BackendIM](https://backend.im)
2025-05-11 19:12:20 +00:00

11 lines
180 B
Python

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