Files
SST/PythonProject/main.py
T

6 lines
106 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-19 16:38:14 +08:00
app = FastAPI()
app.include_router(studentapi)