make HttpPost() global

This commit is contained in:
Jeff Carr 2025-01-20 03:31:19 -06:00
parent 1191b9b65d
commit 9ec7b4394f
1 changed files with 2 additions and 2 deletions

View File

@ -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