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 {
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)