Files
SST/PythonProject/main.py
T
2026-09-21 14:34:03 +08:00

10 lines
187 B
Python

from fastapi import FastAPI
from api.student_api import *
from api.grade_api import *
app = FastAPI()
app.include_router(studentapi)
app.include_router(gradeAPI,tags=['订单接口'])