mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-09-06 22:55:38 +08:00
9 lines
278 B
Go
9 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"`
|
|
}
|