from fastapi import APIRouter router = APIRouter(prefix="/auth") @router.get("/authenticate") async def auth(): return {"Message":"Entered Auth"}