mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
6276883f04
This enhances the existing time.Duration parser to allow multiple units, and implements a decode hook which can be used by koanf to decode string/integers into time.Durations as applicable.
22 lines
668 B
Go
22 lines
668 B
Go
package schema
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
// NTPConfiguration represents the configuration related to ntp server.
|
|
type NTPConfiguration struct {
|
|
Address string `koanf:"address"`
|
|
Version int `koanf:"version"`
|
|
MaximumDesync time.Duration `koanf:"max_desync"`
|
|
DisableStartupCheck bool `koanf:"disable_startup_check"`
|
|
DisableFailure bool `koanf:"disable_failure"`
|
|
}
|
|
|
|
// DefaultNTPConfiguration represents default configuration parameters for the NTP server.
|
|
var DefaultNTPConfiguration = NTPConfiguration{
|
|
Address: "time.cloudflare.com:123",
|
|
Version: 4,
|
|
MaximumDesync: time.Second * 3,
|
|
}
|