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)