WebhookService is responsible for handling webhooks
| 30 | |
| 31 | // WebhookService is responsible for handling webhooks |
| 32 | type WebhookService struct { |
| 33 | service |
| 34 | logger telemetry.Logger |
| 35 | tracer telemetry.Tracer |
| 36 | client *http.Client |
| 37 | repository repositories.WebhookRepository |
| 38 | dispatcher *EventDispatcher |
| 39 | } |
| 40 | |
| 41 | // NewWebhookService creates a new WebhookService |
| 42 | func NewWebhookService( |
nothing calls this directly
no outgoing calls
no test coverage detected