fastapi_mongoDB / app.py
PrabhuKiranKonda's picture
Update app.py
e361083
raw
history blame
387 Bytes
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",
"Swagger UI (docs)" : "https://prabhukirankonda-fastapi-mongodb.hf.space/docs"}