10 lines
187 B
Python
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=['订单接口'])
|