Initial commit

This commit is contained in:
shuQAQshu
2025-12-27 17:18:53 +08:00
commit 12c200b31c
14 changed files with 231 additions and 0 deletions

9
start_server.py Normal file
View File

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