Files
go-garth/garth/client/http_client.go
2025-09-18 05:40:45 -07:00

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)
}