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