| 8 | using Newtonsoft.Json; |
| 9 | |
| 10 | internal interface IHttpClient |
| 11 | { |
| 12 | Task<HeartbeatResponse> SendHeartbeatAsync(HeartbeatRequest request); |
| 13 | Task SendInfoAsync(string url); |
| 14 | } |
| 15 | |
| 16 | internal class HttpClientWrapper : IHttpClient |
| 17 | { |
no outgoing calls
no test coverage detected