All checks were successful
Build docker and publish / build (20.15.1) (push) Successful in 5m54s
15 lines
390 B
Go
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"
|
|
)
|