hi-server/pkg/constant/context.go

17 lines
477 B
Go

package constant
type CtxKey string
const (
CtxKeyUser CtxKey = "user"
CtxKeySessionID CtxKey = "sessionId"
CtxKeyRequestHost CtxKey = "requestHost"
CtxKeyPlatform CtxKey = "platform"
CtxKeyPayment CtxKey = "payment"
CtxLoginType CtxKey = "loginType"
LoginType CtxKey = "loginType"
CtxKeyIdentifier CtxKey = "identifier"
CtxKeyDeviceID CtxKey = "deviceId"
CtxKeyIncludeExpired CtxKey = "includeExpired"
)