3e00a37ef5
Supports retries with exponential backoff as well as connection timeouts and the ability to skip SSL/TLS verification. This commit also refactors datasource and initialize packages in order to use the new HTTP client.
7 lines
90 B
Go
7 lines
90 B
Go
package datasource
|
|
|
|
type Datasource interface {
|
|
Fetch() ([]byte, error)
|
|
Type() string
|
|
}
|