Lee-WineList/config/jwt.go
2023-04-24 17:19:41 +08:00

9 lines
242 B
Go

package config
// JWT JWT配置
type JWT struct {
AccessSecret string `yaml:"AccessSecret"` // 加密签名
AccessExpire int64 `yaml:"AccessExpire"` // 签名有效时间
RefreshAfter int64 `yaml:"RefreshAfter"` // 签名刷新时间
}