abhisheky127's picture
initial commit
15adf17
raw
history blame
No virus
306 Bytes
from fastapi import Depends, HTTPException, status
from fastapi import APIRouter
from authentication import get_current_user
router = APIRouter()
@router.get("/")
def read_demand_assessment(current_user: str = Depends(get_current_user)):
return {"Status": "Alive!!! Hello from Demand Assessment"}