项目初始化

This commit is contained in:
2025-09-28 13:37:21 +08:00
commit 7795de3550
21 changed files with 364 additions and 0 deletions

5
main.py Normal file
View File

@@ -0,0 +1,5 @@
import uvicorn
from application import app
if __name__ == '__main__':
uvicorn.run("main:app", port=9800, reload=False, host='0.0.0.0')