mirror of
https://github.com/ncarlier/webhookd.git
synced 2025-04-06 09:45:18 +00:00
11 lines
191 B
Go
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
|
|
}
|