hotalert/alert/alert.go
2022-11-03 22:04:14 +02:00

9 lines
243 B
Go

package alert
import "context"
// Alerter is an interface for implementing alerts on various channels
type Alerter interface {
// PostAlert posts the alert with the given message.
PostAlert(ctx context.Context, matchedKeywords []string)
}