12 lines
195 B
Python
12 lines
195 B
Python
from fastapi import Depends
|
|
from sqlalchemy.orm import Session
|
|
|
|
from app.db import get_db
|
|
|
|
|
|
def get_db_session():
|
|
db = next(get_db())
|
|
try:
|
|
yield db
|
|
finally:
|
|
db.close() |