Files
go-garth/pkg/garth/client/http_client.go
2025-09-22 16:41:49 -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)
}