driftctl/pkg/alerter/alert.go

9 lines
157 B
Go

package alerter
type Alerts map[string][]Alert
type Alert struct {
Message string `json:"message"`
ShouldIgnoreResource bool `json:"-"`
}