feat: Add endpoint /forgot-password

This commit is contained in:
Backend IM Bot 2025-03-07 11:55:52 +01:00
parent 89487ec7dd
commit 9b8d03064b

View File

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