HTTPRequestDoer is an interface for HTTP clients that can perform GET requests.
| 20 | |
| 21 | // HTTPRequestDoer is an interface for HTTP clients that can perform GET requests. |
| 22 | type HTTPRequestDoer interface { |
| 23 | Get(string) (*http.Response, error) |
| 24 | } |
| 25 | |
| 26 | type DBSearcher interface { |
| 27 | SyncPackage(string) db.IPackage |
no outgoing calls
no test coverage detected