diff --git a/endpoints/logouts.post.py b/endpoints/logouts.post.py new file mode 100644 index 0000000..b48d96f --- /dev/null +++ b/endpoints/logouts.post.py @@ -0,0 +1,13 @@ +# Entity: User + +from fastapi import APIRouter, Depends, status +from core.database import get_db +from sqlalchemy.orm import Session + +router = APIRouter() + +@router.post("/logouts", status_code=status.HTTP_200_OK) +async def logout( + db: Session = Depends(get_db) +): + return {"message": "Logged out successfully"} \ No newline at end of file