add shoutrrr

This commit is contained in:
Maximilian Brandau 2020-03-23 11:40:55 +01:00
parent 7a402fdee7
commit be2376a4e1
No known key found for this signature in database
GPG key ID: 6CBA8C2AC22BA157
5 changed files with 50 additions and 1 deletions

View file

@ -40,6 +40,8 @@ func NewNotifier(c *cobra.Command) *Notifier {
tn = newMsTeamsNotifier(c, acceptedLogLevels)
case gotifyType:
tn = newGotifyNotifier(c, acceptedLogLevels)
case shoutrrrType:
tn = newShoutrrrNotifier(c, acceptedLogLevels)
default:
log.Fatalf("Unknown notification type %q", t)
}