参数分离完全版

This commit is contained in:
2025-08-05 16:55:45 +08:00
commit 25a2ded11d
16 changed files with 2013 additions and 0 deletions

5
main.py Normal file
View File

@ -0,0 +1,5 @@
import uvicorn
from web import app
if __name__ == "__main__":
uvicorn.run(app, host="0.0.0.0", port=8000)