From f3dc54e22b5e97c8f636e6034a562b515d616be8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=85=AC=E6=98=8E?= <83812544+Ed1s0nZ@users.noreply.github.com> Date: Wed, 23 Apr 2025 17:25:54 +0800 Subject: [PATCH] Update tools.go --- tools.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools.go b/tools.go index 9dfc9f1..152e172 100644 --- a/tools.go +++ b/tools.go @@ -189,6 +189,8 @@ func generateHTTPRequest(input string) (string, error) { } if req.Body != "" { buffer.WriteString("\n" + req.Body) + } else { + buffer.WriteString("\n\n") } fmt.Println(buffer.String()) return buffer.String(), nil