This commit is contained in:
Joel Wetzell
2025-11-22 15:26:00 -06:00
parent 9dbde6f393
commit f449505559

View File

@@ -25,6 +25,7 @@ func (hre *HTTPRequestCreate) Process(ctx context.Context, payload any) (any, er
urlString := urlBuffer.String() urlString := urlBuffer.String()
//TODO(jwetzell): support body
request, err := http.NewRequest(hre.Method, urlString, bytes.NewBuffer([]byte{})) request, err := http.NewRequest(hre.Method, urlString, bytes.NewBuffer([]byte{}))
if err != nil { if err != nil {