VictoriaMetrics/app/vmalert/notifier/notifier.go

7 lines
133 B
Go
Raw Normal View History

2020-04-27 21:19:27 +00:00
package notifier
// Notifier is common interface for alert manager provider
type Notifier interface {
Send(alerts []Alert) error
}