初始化

This commit is contained in:
gouhanke
2026-03-05 18:26:08 +08:00
commit 5073036034
22 changed files with 504 additions and 0 deletions

8
main.py Normal file
View File

@@ -0,0 +1,8 @@
import uvicorn
from server.app import app
from server.config import SERVER_HOST, SERVER_PORT
if __name__ == "__main__":
uvicorn.run(app, host=SERVER_HOST, port=SERVER_PORT)