10 lines
136 B
Python
10 lines
136 B
Python
from .db.database import SessionLocal
|
|
|
|
|
|
def get_db():
|
|
db = SessionLocal()
|
|
try:
|
|
yield db
|
|
finally:
|
|
db.close()
|