VictoriaMetrics/app/vmalert/notifier/notifier.go

9 lines
172 B
Go
Raw Normal View History

package notifier
import "context"
// Notifier is common interface for alert manager provider
type Notifier interface {
Send(ctx context.Context, alerts []Alert) error
}