feat: Delete endpoint /forgot-password

This commit is contained in:
Backend IM Bot 2025-03-07 11:57:41 +01:00
parent 9b8d03064b
commit 70f6eaab02

View File

@ -1,7 +0,0 @@
from fastapi import APIRouter
router = APIRouter()
@router.post("/forgot-password")
async def forgot_password(username: str, password: str):
return {"message": "Forgot password!", "username": username}