Added hangouts chat notification support

This commit is contained in:
Ernesto Serrano 2019-09-09 13:56:17 +02:00
parent f317f9fbc8
commit d75f3e018c
4 changed files with 109 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 hangoutsType:
tn = newHangoutsNotifier(c, acceptedLogLevels)
default:
log.Fatalf("Unknown notification type %q", t)
}