mirror of
https://github.com/lejianwen/rustdesk-api.git
synced 2025-11-29 08:33:21 +00:00
9 lines
173 B
Go
9 lines
173 B
Go
package config
|
|
|
|
import "time"
|
|
|
|
type Jwt struct {
|
|
PrivateKey string `mapstructure:"private-key"`
|
|
ExpireDuration time.Duration `mapstructure:"expire-duration"`
|
|
}
|