| 17 | const ProviderType = "webhook" |
| 18 | |
| 19 | type webhookProvider struct { |
| 20 | opt Options |
| 21 | } |
| 22 | |
| 23 | func (p *webhookProvider) Send(ctx context.Context, msg *sender.Message) error { |
| 24 | targetURL := p.opt.Endpoint |
nothing calls this directly
no outgoing calls
no test coverage detected