File size: 296 Bytes
cb7f5fc
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
from fastapi import FastAPI
from routes.student_routes import router as StudentRouter

app = FastAPI(title="FastAPI and MongoDB")
app.include_router(StudentRouter, tags=["Student"], prefix="/student")


@app.get("/", tags=["Root"])
async def root():
    return {"message": "FastAPI and MongoDB"}