1
0
mirror of https://github.com/nikoksr/notify.git synced 2025-01-10 00:28:36 +02:00
notify/notify.go

30 lines
794 B
Go
Raw Normal View History

//go:generate go install github.com/golangci/golangci-lint/cmd/golangci-lint
//go:generate go install mvdan.cc/gofumpt/gofumports
//go:generate go install github.com/daixiang0/gci
2021-01-25 01:14:21 +02:00
package notify
import (
"github.com/pkg/errors"
)
const defaultDisabled = false // Notifier is enabled by default
2021-01-25 01:14:21 +02:00
// Notify is the central struct for managing notification services and sending messages to them.
type Notify struct {
Disabled bool
notifiers []Notifier
}
2021-01-25 01:14:21 +02:00
// ErrSendNotification signals that the notifier failed to send a notification.
var ErrSendNotification = errors.New("send notification")
2021-01-25 01:14:21 +02:00
// New returns a new instance of Notify. Defaulting to being not disabled.
func New() *Notify {
notifier := &Notify{
2021-01-30 22:39:07 +02:00
Disabled: defaultDisabled,
notifiers: []Notifier{},
2021-01-25 01:14:21 +02:00
}
return notifier
}