You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
320 B
16 lines
320 B
3 months ago
|
package owl
|
||
|
|
||
|
import (
|
||
|
"io"
|
||
|
"net/http"
|
||
|
"net/url"
|
||
|
)
|
||
|
|
||
|
type HttpClient interface {
|
||
|
Get(url string) (resp *http.Response, err error)
|
||
|
Post(url, contentType string, body io.Reader) (resp *http.Response, err error)
|
||
|
PostForm(url string, data url.Values) (resp *http.Response, err error)
|
||
|
}
|
||
|
|
||
|
type OwlHttpClient = http.Client
|