mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-01-11 12:47:51 +08:00
10 lines
278 B
Go
10 lines
278 B
Go
package configs
|
|
|
|
type JWT struct {
|
|
HeaderName string `mapstructure:"header_name"`
|
|
SigningKey string `mapstructure:"signing_key"`
|
|
ExpiresTime int64 `mapstructure:"expires_time"`
|
|
BufferTime int64 `mapstructure:"buffer_time"`
|
|
Issuer string `mapstructure:"issuer"`
|
|
}
|