Files
kubesphere/pkg/simple/client/alerting/options.go
2020-01-02 20:52:00 +08:00

23 lines
325 B
Go

package alerting
type Options struct {
Endpoint string `json:"endpoint" yaml:"endpoint"`
}
func NewAlertingOptions() *Options {
return &Options{
Endpoint: "",
}
}
func (s *Options) ApplyTo(options *Options) {
if options == nil {
options = s
return
}
if s.Endpoint != "" {
options.Endpoint = s.Endpoint
}
}