hi-server/pkg/constant/context.go
shanshanzhong 7b33ab6e2a
All checks were successful
Build docker and publish / build (20.15.1) (push) Successful in 5m54s
jwt注销问题
2026-01-09 00:36:19 -08:00

15 lines
390 B
Go

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