1
0
mirror of https://github.com/TwiN/gatus.git synced 2026-02-15 15:35:05 +00:00

Support custom alert provider

This commit is contained in:
TwinProduction
2020-08-27 22:23:21 -04:00
parent 4b57654592
commit 37c4715453
8 changed files with 151 additions and 48 deletions

View File

@@ -18,5 +18,6 @@ type Alert struct {
type AlertType string
const (
SlackAlert AlertType = "slack"
SlackAlert AlertType = "slack"
CustomAlert AlertType = "custom"
)