13 lines
237 B
Go
Raw Normal View History

2025-02-22 12:50:26 +08:00
package jwtclaimenum
type JWTClaim string
const (
TYPE JWTClaim = "type"
EMAIL JWTClaim = "email"
2025-02-22 12:50:26 +08:00
EXPIRED_AT JWTClaim = "exp"
SESSION_ID JWTClaim = "sid"
ISSUED_AT JWTClaim = "iat"
2025-02-24 16:48:20 +08:00
RESOURCES JWTClaim = "resources"
2025-02-22 12:50:26 +08:00
)