Notifications via MSTeams (#174)

* Notifications via MSTeams
This commit is contained in:
Maxim 2018-03-13 08:39:54 +02:00 committed by stffabi
parent 88a7a084a9
commit aa1ce68e3a
4 changed files with 167 additions and 1 deletions

View file

@ -36,6 +36,8 @@ func NewNotifier(c *cli.Context) *Notifier {
tn = newEmailNotifier(c, acceptedLogLevels)
case slackType:
tn = newSlackNotifier(c, acceptedLogLevels)
case msTeamsType:
tn = newMsTeamsNotifier(c, acceptedLogLevels)
default:
log.Fatalf("Unknown notification type %q", t)
}