File size: 244 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
package notification
//go:generate go tool stringer -type Result
// Result specifies a response to a notification.
type Result int
// Possible notification responses.
const (
ResultAcknowledge Result = iota
ResultResolve
ResultEscalate
)
|