()
| 37 | // The Server type represents a generic read-only server. |
| 38 | type Server interface { |
| 39 | GetConnectionInfo() (info *ConnectionInfo, err error) |
| 40 | GetHTTPClient() (client *http.Client, err error) |
| 41 | DoHTTP(req *http.Request) (resp *http.Response, err error) |
| 42 | Disconnect() |
no outgoing calls
no test coverage detected