mirror of
https://github.com/TwiN/gatus.git
synced 2024-12-01 20:33:29 +01:00
8 lines
155 B
Go
8 lines
155 B
Go
|
package alerting
|
||
|
|
||
|
type pagerDutyResponse struct {
|
||
|
Status string `json:"status"`
|
||
|
Message string `json:"message"`
|
||
|
DedupKey string `json:"dedup_key"`
|
||
|
}
|