package model import ( "github.com/dgrijalva/jwt-go" "gogs.baozhida.cn/zoie/OAuth-core/sdk/config" ) type CustomerClaims struct { CustomerId string `json:"customerId"` jwt.StandardClaims } var AppletCustomerSecret = []byte(config.JwtConfig.Secret)