verification/internal/models/validate.go

11 lines
192 B
Go
Raw Normal View History

2023-06-12 14:19:10 +00:00
package models
type RespErrorValidate struct {
Field string `json:"field"`
Tag string `json:"tag"`
Value string `json:"value"`
}
2024-05-27 11:53:34 +00:00
const UserCtxKey = "userID"
const TokenCtxKey = "token"