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