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