Fixing struct serialization issue (small caps).

master
Tomasz Półgrabia 2022-01-14 22:40:20 +01:00
parent 8bd3d7a27a
commit baa1f2f95e
1 changed files with 4 additions and 4 deletions

View File

@ -6,16 +6,16 @@ import (
) )
type StandardResponse struct { type StandardResponse struct {
result int Result int
status string Status string
} }
func main() { func main() {
hf := http.HandlerFunc(func(writer http.ResponseWriter, req *http.Request) { hf := http.HandlerFunc(func(writer http.ResponseWriter, req *http.Request) {
writer.Header().Set("Content-Type", "application/json") writer.Header().Set("Content-Type", "application/json")
m := StandardResponse{ m := StandardResponse{
result: 200, Result: 200,
status: "OK", Status: "OK",
} }
p, _ := json.Marshal(m) p, _ := json.Marshal(m)