mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2025-02-09 15:27:11 +00: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
|
||
|
}
|