mirror of
https://github.com/sstent/go-garth.git
synced 2025-12-06 08:01:42 +00:00
12 lines
222 B
Go
12 lines
222 B
Go
package client
|
|
|
|
import (
|
|
"io"
|
|
"net/url"
|
|
)
|
|
|
|
// HTTPClient defines the interface for HTTP operations
|
|
type HTTPClient interface {
|
|
ConnectAPI(path string, method string, params url.Values, body io.Reader) ([]byte, error)
|
|
}
|