初始化

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

6
server/app.py Normal file
View File

@@ -0,0 +1,6 @@
from fastapi import FastAPI
from .ws import router as ws_router
app = FastAPI()
app.include_router(ws_router)