From 4b143a66502ffbc589c7dc197a8525fca03a5127 Mon Sep 17 00:00:00 2001
From: cheddar <cheddar@crispbyte.dev>
Date: Tue, 11 Feb 2025 12:22:18 -0500
Subject: [PATCH] Reformat this

---
 main.go | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/main.go b/main.go
index 5cd4658..7148581 100644
--- a/main.go
+++ b/main.go
@@ -30,7 +30,10 @@ func main() {
 		log.Fatal(err)
 	}
 
-	resp, err := client.Post("http://localhost:8080/post", "application/json", bytes.NewBuffer(json_data))
+	resp, err := client.Post(
+		"http://localhost:8080/post",
+		"application/json",
+		bytes.NewBuffer(json_data))
 
 	if err != nil {
 		log.Fatal(err)