ntp.go 225 B

123456789
  1. package option
  2. type NTPOptions struct {
  3. Enabled bool `json:"enabled"`
  4. Interval Duration `json:"interval,omitempty"`
  5. WriteToSystem bool `json:"write_to_system,omitempty"`
  6. ServerOptions
  7. DialerOptions
  8. }