File size: 137 Bytes
aa27d2d
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
from app.db.database import SessionLocal

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