1
0
mirror of https://github.com/nikoksr/notify.git synced 2024-12-02 08:51:50 +02:00
notify/notifier.go
2022-02-07 10:24:43 +01:00

12 lines
354 B
Go

package notify
import "context"
// Notifier defines the behavior for notification services.
//
// The Send function simply sends a subject and a message string to the internal destination Notifier.
// E.g. for telegram.Telegram it sends the message to the specified group chat.
type Notifier interface {
Send(context.Context, string, string) error
}