f41b9d5887
- `RUSTDESK_API_JWT_KEY`如果设置,将会启用JWT,token自动续期功能将失效 - 此功能是为了server端校验token的合法性
9 lines
165 B
Go
9 lines
165 B
Go
package config
|
|
|
|
import "time"
|
|
|
|
type Jwt struct {
|
|
Key string `mapstructure:"key"`
|
|
ExpireDuration time.Duration `mapstructure:"expire-duration"`
|
|
}
|