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