Files
flagger/pkg/notifier/nop.go
2020-03-15 18:44:05 +09:00

8 lines
135 B
Go

package notifier
type NopNotifier struct{}
func (n *NopNotifier) Post(string, string, string, []Field, string) error {
return nil
}