From baa1f2f95e7c686bf57d1bcb6e676eec70e65754 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomasz=20P=C3=B3=C5=82grabia?= Date: Fri, 14 Jan 2022 22:40:20 +0100 Subject: [PATCH] Fixing struct serialization issue (small caps). --- 2022/01/golang_demo1/Program.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/2022/01/golang_demo1/Program.go b/2022/01/golang_demo1/Program.go index fb9a0d6..56ccae8 100644 --- a/2022/01/golang_demo1/Program.go +++ b/2022/01/golang_demo1/Program.go @@ -6,16 +6,16 @@ import ( ) type StandardResponse struct { - result int - status string + Result int + Status string } func main() { hf := http.HandlerFunc(func(writer http.ResponseWriter, req *http.Request) { writer.Header().Set("Content-Type", "application/json") m := StandardResponse{ - result: 200, - status: "OK", + Result: 200, + Status: "OK", } p, _ := json.Marshal(m)