From f4495055596ec51fb0646226da56f8809745732a Mon Sep 17 00:00:00 2001 From: Joel Wetzell Date: Sat, 22 Nov 2025 15:26:00 -0600 Subject: [PATCH] add TODO --- internal/processing/http-request-create.go | 1 + 1 file changed, 1 insertion(+) diff --git a/internal/processing/http-request-create.go b/internal/processing/http-request-create.go index bc99cf9..7b9cf1e 100644 --- a/internal/processing/http-request-create.go +++ b/internal/processing/http-request-create.go @@ -25,6 +25,7 @@ func (hre *HTTPRequestCreate) Process(ctx context.Context, payload any) (any, er urlString := urlBuffer.String() + //TODO(jwetzell): support body request, err := http.NewRequest(hre.Method, urlString, bytes.NewBuffer([]byte{})) if err != nil {