面包店
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

21 regels
429 B

  1. package auth
  2. import (
  3. "time"
  4. "github.com/dgrijalva/jwt-go"
  5. )
  6. // TokenExpireDuration is jwt 过期时间
  7. const TokenExpireDuration = time.Hour * 4380
  8. var Secret = []byte("bakery_big_data")
  9. // JWTUser 如果想要保存更多信息,都可以添加到这个结构体中
  10. type JWTUser struct {
  11. Account string `json:"account"`
  12. Password string `json:"password"`
  13. LoginKind string `json:"login_kind"`
  14. jwt.StandardClaims
  15. }