Files
SST/PythonProject/main.py
T

6 lines
115 B
Python
Raw Normal View History

2026-09-19 16:38:14 +08:00
from fastapi import FastAPI
2026-09-21 14:44:11 +08:00
from api.student_api import StudentAPI
2026-09-19 16:38:14 +08:00
app = FastAPI()
2026-09-21 14:44:11 +08:00
app.include_router(StudentAPI)