Spaces:
Sleeping
Sleeping
File size: 277 Bytes
43059ab | 1 2 3 4 5 6 7 8 9 10 11 | from fastapi import HTTPException, status
user_not_found = HTTPException(
status_code=status.HTTP_404_NOT_FOUND,
detail="Usuário não encontrado"
)
user_already_exist = HTTPException(
status_code=status.HTTP_400_BAD_REQUEST,
detail="Usuário ja cadastrado"
) |