11 lines
157 B
Go
11 lines
157 B
Go
package jwt
|
|
|
|
import jwt2 "github.com/golang-jwt/jwt/v5"
|
|
|
|
type UserClaims struct {
|
|
jwt2.RegisteredClaims
|
|
UserID string
|
|
KYCLevel int
|
|
Sections []string
|
|
}
|