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