Add Telegram Alerting (#102)

This commit is contained in:
Jonah
2021-03-31 01:38:34 +02:00
committed by GitHub
parent 4e5a86031f
commit 24da853820
10 changed files with 212 additions and 9 deletions

View File

@ -58,6 +58,9 @@ const (
// SlackAlert is the AlertType for the slack alerting provider
SlackAlert AlertType = "slack"
// TelegramAlert is the AlertType for the telegram alerting provider
TelegramAlert AlertType = "telegram"
// TwilioAlert is the AlertType for the twilio alerting provider
TwilioAlert AlertType = "twilio"
)