Spotix-API / backend /app /db /session.py
Anish530's picture
Initial commit of full project [remaining backend some parts and frontend to be done yet]
aa27d2d
from app.db.database import SessionLocal
def get_db():
db = SessionLocal()
try:
yield db
finally:
db.close()