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

6 lines
115 B
Python

from fastapi import FastAPI
from api.student_api import StudentAPI
app = FastAPI()
app.include_router(StudentAPI)