8 lines
194 B
Python
8 lines
194 B
Python
from fastapi import FastAPI
|
|
from api.student_api import StudentAPI
|
|
from api.statistics_api import StatisticsAPI
|
|
app = FastAPI()
|
|
|
|
app.include_router(StudentAPI)
|
|
app.include_router(StatisticsAPI)
|