mirror of
https://github.com/fluxcd/flagger.git
synced 2026-04-15 06:57:34 +00:00
8 lines
135 B
Go
8 lines
135 B
Go
package notifier
|
|
|
|
type NopNotifier struct{}
|
|
|
|
func (n *NopNotifier) Post(string, string, string, []Field, string) error {
|
|
return nil
|
|
}
|