(ctx context.Context, hookID string, hook *Hook)
| 65 | type HookManager interface { |
| 66 | RegisterHook(ctx context.Context, hook *Hook) error |
| 67 | UpdateHook(ctx context.Context, hookID string, hook *Hook) error |
| 68 | DeleteHook(ctx context.Context, hookID string) error |
| 69 | GetHook(ctx context.Context, hookID string) (*Hook, error) |
| 70 | ListHooks(ctx context.Context, hookType HookType) ([]*Hook, error) |
no outgoing calls
no test coverage detected