summaryrefslogtreecommitdiff
path: root/getPatchsets.go
diff options
context:
space:
mode:
Diffstat (limited to 'getPatchsets.go')
-rw-r--r--getPatchsets.go4
1 files changed, 2 insertions, 2 deletions
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