fix breaking login and wrong port

This commit is contained in:
Akhil Gupta
2021-06-07 16:05:37 +05:30
parent cca55d2838
commit 8cea4579eb
3 changed files with 5 additions and 5 deletions

View File

@@ -12,7 +12,7 @@ type LoginResponse struct {
type LoginRequest struct {
Email string `form:"email" json:"email" binding:"required,email"`
Password string `form:"password" json:"password" binding:"required,min=6,max=255"`
Password string `form:"password" json:"password" binding:"required,max=255"`
}
type RegisterRequest struct {