This commit is contained in:
hackrobot
2024-07-15 18:43:15 +08:00
parent 6c3799db02
commit 745a3df44e
12 changed files with 154 additions and 0 deletions

4
run.py Normal file
View File

@@ -0,0 +1,4 @@
import uvicorn
if __name__ == "__main__":
uvicorn.run("app.main:app", host="127.0.0.1", port=8000, reload=True)