| 34 | } |
| 35 | |
| 36 | type WebhookAudit struct { |
| 37 | name string |
| 38 | client *http.Client |
| 39 | |
| 40 | WebhookAuditConfig |
| 41 | } |
| 42 | |
| 43 | func NewWebhookAudit(id string, conf WebhookAuditConfig) (*WebhookAudit, error) { |
| 44 | if err := conf.FixConfig(); err != nil { |
nothing calls this directly
no outgoing calls
no test coverage detected