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"
|
|
|
|
const HlogCtxKey = "logger"
|