diff --git a/app/api/endpoints/forgot-password.py b/app/api/endpoints/forgot-password.py new file mode 100644 index 0000000..a41202d --- /dev/null +++ b/app/api/endpoints/forgot-password.py @@ -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} \ No newline at end of file