9 lines
157 B
Go
9 lines
157 B
Go
|
package alerter
|
||
|
|
||
|
type Alerts map[string][]Alert
|
||
|
|
||
|
type Alert struct {
|
||
|
Message string `json:"message"`
|
||
|
ShouldIgnoreResource bool `json:"-"`
|
||
|
}
|