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-21 15:38:21 +08:00
|
|
|
from api.statistics_api import StatisticsAPI
|
2026-09-19 16:38:14 +08:00
|
|
|
app = FastAPI()
|
|
|
|
|
|
2026-09-21 14:44:11 +08:00
|
|
|
app.include_router(StudentAPI)
|
2026-09-21 15:38:21 +08:00
|
|
|
app.include_router(StatisticsAPI)
|