Merge pull request #470 from mbrandau/add-shoutrrr

WIP: add shoutrrr support
This commit is contained in:
Simon Aronsson 2020-04-05 16:46:26 +02:00 committed by GitHub
commit cb4c58f714
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 143 additions and 1 deletions

View file

@ -42,6 +42,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)
}