Add teams alerting provider

This commit is contained in:
Bastien Ogier
2021-07-28 14:15:56 +02:00
parent be4e9aba1e
commit 23fb69fca9
10 changed files with 256 additions and 53 deletions

View File

@ -10,6 +10,7 @@ import (
"github.com/TwinProduction/gatus/alerting/provider/slack"
"github.com/TwinProduction/gatus/alerting/provider/telegram"
"github.com/TwinProduction/gatus/alerting/provider/twilio"
"github.com/TwinProduction/gatus/alerting/provider/teams"
"github.com/TwinProduction/gatus/core"
)
@ -57,4 +58,5 @@ var (
_ AlertProvider = (*slack.AlertProvider)(nil)
_ AlertProvider = (*telegram.AlertProvider)(nil)
_ AlertProvider = (*twilio.AlertProvider)(nil)
_ AlertProvider = (*teams.AlertProvider)(nil)
)