From ed0d685ab587afe5b0e790744f24d2048d3e523a Mon Sep 17 00:00:00 2001 From: maruizhi <3088243241@qq.com> Date: Mon, 21 Sep 2026 15:38:21 +0800 Subject: [PATCH] mrz --- PythonProject/main.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/PythonProject/main.py b/PythonProject/main.py index 7d661dd..af9dc5c 100644 --- a/PythonProject/main.py +++ b/PythonProject/main.py @@ -1,5 +1,7 @@ from fastapi import FastAPI from api.student_api import StudentAPI +from api.statistics_api import StatisticsAPI app = FastAPI() app.include_router(StudentAPI) +app.include_router(StatisticsAPI)