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

9 lines
242 B
Go

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