VictoriaMetrics/app/vmalert/notifier/notifier.go

7 lines
133 B
Go
Raw Normal View History

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