webhookd/pkg/notification/types.go
2022-05-26 10:05:53 +02:00

10 lines
143 B
Go

package notification
type HookResult interface {
ID() uint64
Name() string
Logs(filter string) string
StatusLabel() string
Err() error
}