增删改查基本完成

This commit is contained in:
2026-09-22 11:45:25 +08:00
parent 8a1022390f
commit 1fe2b6bc60
3 changed files with 16 additions and 15 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
from fastapi import FastAPI
from scores.api.score_api import score_api
from scores.database import *
app = FastAPI()
app = FastAPI(title='成绩管理系统')
app.include_router(score_api)