mirror of
https://github.com/ncarlier/webhookd.git
synced 2025-04-07 19:29:19 +00:00
10 lines
143 B
Go
10 lines
143 B
Go
package notification
|
|
|
|
type HookResult interface {
|
|
ID() uint64
|
|
Name() string
|
|
Logs(filter string) string
|
|
StatusLabel() string
|
|
Err() error
|
|
}
|