ekster/pkg/fetch/fetcher.go

7 lines
103 B
Go

package fetch
import "net/http"
type Fetcher interface {
Fetch(url string) (*http.Response, error)
}