mirror of
https://github.com/fastapi/fastapi.git
synced 2026-02-13 15:51:14 -05:00
7 lines
99 B
Python
7 lines
99 B
Python
async def get_db():
|
|
db = DBSession()
|
|
try:
|
|
yield db
|
|
finally:
|
|
db.close()
|