Omkar008's picture
Upload 17 files
d1a66a2 verified
raw
history blame contribute delete
No virus
151 Bytes
from fastapi import APIRouter
router = APIRouter(prefix="/auth")
@router.get("/authenticate")
async def auth():
return {"Message":"Entered Auth"}