This repository has been archived on 2024-11-28. You can view files and clone it, but cannot push or open issues or pull requests.
Files
schisandra-cloud-album/config/conf_jwt.go
2024-08-12 22:05:59 +08:00

11 lines
326 B
Go

package config
type JWT struct {
Secret string `yaml:"secret"`
Expiration string `yaml:"expiration"`
RefreshExpiration string `yaml:"refresh-expiration"`
RefreshTokenKey string `yaml:"refresh-token-key"`
HeaderKey string `yaml:"header-key"`
HeaderPrefix string `yaml:"header-prefix"`
}