sing-box/option/ntp.go

12 lines
322 B
Go
Raw Normal View History

2023-02-21 14:53:00 +08:00
package option
2024-11-07 21:44:04 +08:00
import "github.com/sagernet/sing/common/json/badoption"
2023-02-21 14:53:00 +08:00
type NTPOptions struct {
2024-11-07 21:44:04 +08:00
Enabled bool `json:"enabled,omitempty"`
Interval badoption.Duration `json:"interval,omitempty"`
WriteToSystem bool `json:"write_to_system,omitempty"`
2024-03-26 20:58:47 +08:00
ServerOptions
2023-02-21 14:53:00 +08:00
DialerOptions
}