7 lines
103 B
Go
7 lines
103 B
Go
package fetch
|
|
|
|
import "net/http"
|
|
|
|
type Fetcher interface {
|
|
Fetch(url string) (*http.Response, error)
|
|
} |