mirror of
https://github.com/TwiN/gatus.git
synced 2024-11-22 16:03:44 +01:00
16 lines
505 B
Go
16 lines
505 B
Go
package alerting
|
|
|
|
import (
|
|
"github.com/TwinProduction/gatus/alerting/provider/custom"
|
|
"github.com/TwinProduction/gatus/alerting/provider/pagerduty"
|
|
"github.com/TwinProduction/gatus/alerting/provider/slack"
|
|
"github.com/TwinProduction/gatus/alerting/provider/twilio"
|
|
)
|
|
|
|
type Config struct {
|
|
Slack *slack.AlertProvider `yaml:"slack"`
|
|
PagerDuty *pagerduty.AlertProvider `yaml:"pagerduty"`
|
|
Twilio *twilio.AlertProvider `yaml:"twilio"`
|
|
Custom *custom.AlertProvider `yaml:"custom"`
|
|
}
|