driftctl/pkg/alerter/alert.go

9 lines
157 B
Go
Raw Normal View History

2020-12-16 12:02:02 +00:00
package alerter
type Alerts map[string][]Alert
type Alert struct {
Message string `json:"message"`
ShouldIgnoreResource bool `json:"-"`
}