Fixing struct serialization issue (small caps).
parent
8bd3d7a27a
commit
baa1f2f95e
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue