diff --git a/endpoints/LOGOUT.post.py b/endpoints/LOGOUT.post.py index e5c17da..288ec4a 100644 --- a/endpoints/LOGOUT.post.py +++ b/endpoints/LOGOUT.post.py @@ -1,7 +1,5 @@ from fastapi import APIRouter, HTTPException -users = [] # In-memory storage - router = APIRouter() @router.post("/LOGOUT") @@ -9,9 +7,10 @@ async def logout_demo(): """Demo logout endpoint""" return { "message": "Logout successful", - "token": None, + "method": "POST", + "_verb": "post", "features": { - "rate_limit": 0, - "expires_in": 0 + "rate_limit": 100, + "expires_in": 3600 } } \ No newline at end of file