mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
6 lines
133 B
Go
6 lines
133 B
Go
package notifier
|
|
|
|
// Notifier is common interface for alert manager provider
|
|
type Notifier interface {
|
|
Send(alerts []Alert) error
|
|
}
|