webhookd/pkg/notification/types.go
2023-10-03 21:12:37 +00:00

11 lines
191 B
Go

package notification
// HookResult is the result of a hook execution
type HookResult interface {
ID() uint64
Name() string
Logs(filter string) string
StatusLabel() string
Err() error
}