| 19 | |
| 20 | type ( |
| 21 | Client struct { |
| 22 | lock sync.RWMutex |
| 23 | signCount atomic.Uint32 |
| 24 | instances []*remote |
| 25 | app *auth.AppInfo |
| 26 | httpClient *http.Client |
| 27 | extraHeaders http.Header |
| 28 | log func(string, ...any) |
| 29 | lastTestTime time.Time |
| 30 | } |
| 31 | |
| 32 | remote struct { |
| 33 | server string |
nothing calls this directly
no outgoing calls
no test coverage detected