mirror of https://github.com/statping/statping
22 lines
444 B
Go
22 lines
444 B
Go
package core
|
|
|
|
import (
|
|
"github.com/hunterlong/statping/core/notifier"
|
|
"github.com/hunterlong/statping/notifiers"
|
|
)
|
|
|
|
// AttachNotifiers will attach all the notifier's into the system
|
|
func AttachNotifiers() error {
|
|
return notifier.AddNotifiers(
|
|
notifiers.Command,
|
|
notifiers.Discorder,
|
|
notifiers.Emailer,
|
|
notifiers.LineNotify,
|
|
notifiers.Mobile,
|
|
notifiers.Slacker,
|
|
notifiers.Telegram,
|
|
notifiers.Twilio,
|
|
notifiers.Webhook,
|
|
)
|
|
}
|