ekster/pkg/fetch/fetcher.go
Peter Stuifzand 76819ac804
All checks were successful
continuous-integration/drone/push Build is passing
Remove global variable pool and replace fetcher with func
2019-03-23 18:23:56 +01:00

7 lines
141 B
Go

package fetch
import "net/http"
// FetcherFunc is a function that fetches an url
type FetcherFunc func(url string) (*http.Response, error)