11 lines
192 B
Go
11 lines
192 B
Go
package models
|
|
|
|
type RespErrorValidate struct {
|
|
Field string `json:"field"`
|
|
Tag string `json:"tag"`
|
|
Value string `json:"value"`
|
|
}
|
|
|
|
const UserCtxKey = "userID"
|
|
const TokenCtxKey = "token"
|