f1aecd4
1
2
3
4
5
6
7
8
9
10
from app.database.database import SessionLocal def get_db(): db = SessionLocal() try: yield db finally: db.close()