8 lines
140 B
Python
8 lines
140 B
Python
from backend.db.session import SessionLocal
|
|
|
|
def get_db():
|
|
db = SessionLocal()
|
|
try:
|
|
yield db
|
|
finally:
|
|
db.close() |