gatus/core/alert.go
2020-08-19 19:41:01 -04:00

15 lines
265 B
Go

package core
type Alert struct {
Type AlertType `yaml:"type"`
Enabled bool `yaml:"enabled"`
Threshold int `yaml:"threshold"`
Description string `yaml:"description"`
}
type AlertType string
const (
SlackAlert AlertType = "slack"
)