面包店
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 달 전
7 달 전
8 달 전
8 달 전
8 달 전
12345678910111213141516171819
  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_ipad")
  9. // JWTUser 如果想要保存更多信息,都可以添加到这个结构体中
  10. type JWTUser struct {
  11. Account string `json:"account"`
  12. Password string `json:"password"`
  13. jwt.StandardClaims
  14. }