ntp.go 325 B

12345678910
  1. package option
  2. type NTPOptions struct {
  3. Enabled bool `json:"enabled,omitempty"`
  4. Server string `json:"server,omitempty"`
  5. ServerPort uint16 `json:"server_port,omitempty"`
  6. Interval Duration `json:"interval,omitempty"`
  7. WriteToSystem bool `json:"write_to_system,omitempty"`
  8. DialerOptions
  9. }