HookResponse represents the expected response from webhook endpoints.
| 56 | |
| 57 | // HookResponse represents the expected response from webhook endpoints. |
| 58 | type HookResponse struct { |
| 59 | Success bool `json:"success"` |
| 60 | Message string `json:"message"` |
| 61 | Data interface{} `json:"data,omitempty"` |
| 62 | } |
| 63 | |
| 64 | // HookManager defines the interface for managing hooks. |
| 65 | type HookManager interface { |
nothing calls this directly
no outgoing calls
no test coverage detected