2023-02-21 14:53:00 +08:00
|
|
|
package option
|
|
|
|
|
|
|
|
type NTPOptions struct {
|
2023-03-18 23:01:10 +08:00
|
|
|
Enabled bool `json:"enabled"`
|
|
|
|
Interval Duration `json:"interval,omitempty"`
|
|
|
|
WriteToSystem bool `json:"write_to_system,omitempty"`
|
2023-02-21 14:53:00 +08:00
|
|
|
ServerOptions
|
|
|
|
DialerOptions
|
|
|
|
}
|