implement email verification feature, add captcha validation middleware, and enhance user authentication flow

This commit is contained in:
2025-07-22 08:50:16 +08:00
parent 6187425df6
commit a0d215fa2e
26 changed files with 844 additions and 50 deletions

View File

@ -1,10 +1,12 @@
package resps
const (
ErrParamInvalid = "invalid request parameters"
ErrUnauthorized = "unauthorized access"
ErrForbidden = "access forbidden"
ErrNotFound = "resource not found"
Success = "success"
ErrParamInvalid = "invalid request parameters"
ErrUnauthorized = "unauthorized access"
ErrForbidden = "access forbidden"
ErrNotFound = "resource not found"
ErrInternalServerError = "internal server error"
ErrInvalidCredentials = "invalid credentials"
)