b2e9bf4
1
2
3
4
5
6
7
from fastapi import APIRouter router = APIRouter(prefix="/auth") @router.get("/authenticate") async def auth(): return {"Message":"Entered Auth"}