Beau Barker
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
docs_src/sql_databases/sql_app/main.py
|
@ -13,8 +13,8 @@ app = FastAPI() |
|
|
|
|
|
|
|
|
# Dependency |
|
|
# Dependency |
|
|
def get_db(): |
|
|
def get_db(): |
|
|
|
|
|
db = SessionLocal() |
|
|
try: |
|
|
try: |
|
|
db = SessionLocal() |
|
|
|
|
|
yield db |
|
|
yield db |
|
|
finally: |
|
|
finally: |
|
|
db.close() |
|
|
db.close() |
|
|