2026-09-19 16:38:14 +08:00
|
|
|
from fastapi import FastAPI
|
2026-09-20 15:32:28 +08:00
|
|
|
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()
|
|
|
|
|
|
2026-09-20 15:32:28 +08:00
|
|
|
app.include_router(studentapi)
|
2026-09-21 14:34:03 +08:00
|
|
|
|
|
|
|
|
app.include_router(gradeAPI,tags=['订单接口'])
|