| 4 | |
| 5 | |
| 6 | class LoginRequest(DTO): |
| 7 | email: str = Field( |
| 8 | ..., |
| 9 | min_length=3, |
| 10 | max_length=255, |
| 11 | description="The email of the user", |
| 12 | examples=["p8t2H@example.com", "Ww5rP@example.com"], |
| 13 | ) |
| 14 | password: str = Field( |
| 15 | ..., |
| 16 | min_length=3, |
| 17 | max_length=255, |
| 18 | description="The password of the user", |
| 19 | examples=["password", "password123"], |
| 20 | ) |
nothing calls this directly
no outgoing calls
no test coverage detected