File size: 209 Bytes
bef5e76 | 1 2 3 4 5 6 7 8 9 10 11 | """Security models for password validation."""
from pydantic import BaseModel
class ValidatePassword(BaseModel):
"""Password validation response."""
status: int
data: bool
error: str | None
|