From 9ec7b4394f8880fa4c9ae8d52f5fa4503eb95376 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Mon, 20 Jan 2025 03:31:19 -0600 Subject: make HttpPost() global --- getPatchsets.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'getPatchsets.go') diff --git a/getPatchsets.go b/getPatchsets.go index eaea0f5..0ffccb1 100644 --- a/getPatchsets.go +++ b/getPatchsets.go @@ -17,7 +17,7 @@ var forgeURL string = "https://go.wit.com/" func (f *Forge) GetPatchesets() (*Patchsets, error) { url := forgeURL + "/GetPatchsets" log.Info("GetPatchsets() url", url) - body, err := httpPost(url, nil) + body, err := f.HttpPost(url, nil) if err != nil { log.Info("httpPost() failed:", err) return nil, err @@ -39,7 +39,7 @@ func (f *Forge) GetPatchesets() (*Patchsets, error) { return psets, nil } -func httpPost(url string, data []byte) ([]byte, error) { +func (f *Forge) HttpPost(url string, data []byte) ([]byte, error) { var err error var req *http.Request -- cgit v1.2.3