mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-12-15 08:23:34 +01:00
7 lines
133 B
Go
7 lines
133 B
Go
package notifier
|
|
|
|
// Notifier is common interface for alert manager provider
|
|
type Notifier interface {
|
|
Send(alerts []Alert) error
|
|
}
|