6 lines
106 B
Python
6 lines
106 B
Python
from fastapi import FastAPI
|
|
from api.student_api import *
|
|
app = FastAPI()
|
|
|
|
app.include_router(studentapi)
|