sing-box/option/ntp.go

10 lines
235 B
Go
Raw Permalink Normal View History

2023-02-21 06:53:00 +00:00
package option
type NTPOptions struct {
Enabled bool `json:"enabled,omitempty"`
Interval Duration `json:"interval,omitempty"`
WriteToSystem bool `json:"write_to_system,omitempty"`
2024-03-26 12:58:47 +00:00
ServerOptions
2023-02-21 06:53:00 +00:00
DialerOptions
}