Files
copilot-app/pkg/jwt/model.go
2025-08-13 19:03:20 +08:00

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
}