10 lines
155 B
Go
10 lines
155 B
Go
package jwt
|
|
|
|
import "github.com/golang-jwt/jwt/v5"
|
|
|
|
type JWTLoad struct {
|
|
UserLoad interface{} `json:"user_load"`
|
|
Version int64
|
|
jwt.RegisteredClaims
|
|
}
|