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