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