diff --git a/endpoints/logout.post.py b/endpoints/logout.post.py index 9294eba..ed0517d 100644 --- a/endpoints/logout.post.py +++ b/endpoints/logout.post.py @@ -15,4 +15,4 @@ async def logout( current_user: User = Depends(get_current_user) ): logout_user(db, current_user) - return {"message": "Logout successful"} \ No newline at end of file + return {"message": "Logged out successfully"} \ No newline at end of file