Fix SQLAlchemy examples

This commit is contained in:
François Voron
2022-02-01 09:25:44 +01:00
parent 5f3d4fa044
commit 9b1f9bbd0f
8 changed files with 23 additions and 7 deletions

View File

@ -1,4 +1,4 @@
import uvicorn
if __name__ == "__main__":
uvicorn.run("app.app:app", host="0.0.0.0", port=5000, log_level="info")
uvicorn.run("app.app:app", host="0.0.0.0", log_level="info")