Files
flagger/pkg/notifier/nop.go
T

8 lines
135 B
Go

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