applet_customer.go 255 B

12345678910111213
  1. package model
  2. import (
  3. "github.com/dgrijalva/jwt-go"
  4. "gogs.baozhida.cn/zoie/OAuth-core/sdk/config"
  5. )
  6. type CustomerClaims struct {
  7. CustomerId string `json:"customerId"`
  8. jwt.StandardClaims
  9. }
  10. var AppletCustomerSecret = []byte(config.JwtConfig.Secret)