12 lines
220 B
Go
12 lines
220 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"
|
|
const HlogCtxKey = "logger"
|