| 20 | const defaultPushoverURL = "https://api.pushover.net/1/messages.json" |
| 21 | |
| 22 | type pushoverProvider struct { |
| 23 | opt Options |
| 24 | } |
| 25 | |
| 26 | func (p *pushoverProvider) Send(ctx context.Context, msg *sender.Message) error { |
| 27 | payload := map[string]string{ |
nothing calls this directly
no outgoing calls
no test coverage detected