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 | |
) | |
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 | |
) | |