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

23 lines
299 B
Go

package notification
type Options struct {
Endpoint string
}
func NewNotificationOptions() *Options {
return &Options{
Endpoint: "",
}
}
func (s *Options) ApplyTo(options *Options) {
if options == nil {
options = s
return
}
if s.Endpoint != "" {
options.Endpoint = s.Endpoint
}
}