Files
saladeaula.digital/id.saladeaula.digital/app/routes/forgot.py
2025-12-01 22:27:14 -03:00

13 lines
312 B
Python

from typing import Annotated
from aws_lambda_powertools.event_handler.api_gateway import Router
from aws_lambda_powertools.event_handler.openapi.params import Body
from pydantic import EmailStr
router = Router()
@router.post('/forgot')
def forgot(email: Annotated[EmailStr, Body(embed=True)]):
return {}