backend update

This commit is contained in:
stardrophere
2026-03-09 13:43:00 +08:00
parent 39d4e9ef8f
commit 3c57dd0cce
15 changed files with 433 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
# run.py
import uvicorn
if __name__ == "__main__":
# 调用 uvicorn.run() 启动服务
uvicorn.run(
app="app.main:app",
host="0.0.0.0",
port=8000,
reload=True,
workers=1
)