Files
SST/PythonProject/main.py
T

10 lines
187 B
Python
Raw Normal View History

2026-09-19 16:38:14 +08:00
from fastapi import FastAPI
from api.student_api import *
2026-09-21 14:34:03 +08:00
from api.grade_api import *
2026-09-19 16:38:14 +08:00
app = FastAPI()
app.include_router(studentapi)
2026-09-21 14:34:03 +08:00
app.include_router(gradeAPI,tags=['订单接口'])