mirror of
https://github.com/TwiN/gatus.git
synced 2026-02-06 03:52:59 +00:00
9 lines
247 B
Go
9 lines
247 B
Go
package alerting
|
|
|
|
type Config struct {
|
|
Slack *SlackAlertProvider `yaml:"slack"`
|
|
PagerDuty *PagerDutyAlertProvider `yaml:"pagerduty"`
|
|
Twilio *TwilioAlertProvider `yaml:"twilio"`
|
|
Custom *CustomAlertProvider `yaml:"custom"`
|
|
}
|