Files
go-garth-cli/internal/api/client/http_client.go
2025-09-21 11:03:52 -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)
}