aboutsummaryrefslogtreecommitdiff
path: root/core.go
diff options
context:
space:
mode:
authorDoug Black <doug@dougblack.io>2014-04-24 20:52:41 -0700
committerDoug Black <doug@dougblack.io>2014-04-24 20:52:41 -0700
commit929e726c5f2604cdcb95a2e82b7002a51f1858aa (patch)
treecad5bc217f8d2a8692166bad49202e3a1f739e29 /core.go
parents/muxPointer/mux/ (diff)
parentAlways create readable JSON strings. http://www.vinaysahni.com/best-practices... (diff)
downloadsleepy-929e726c5f2604cdcb95a2e82b7002a51f1858aa.tar.gz
sleepy-929e726c5f2604cdcb95a2e82b7002a51f1858aa.tar.bz2
sleepy-929e726c5f2604cdcb95a2e82b7002a51f1858aa.zip
Merge pull request #20 from strukturag/pretty_print
Always create readable JSON strings.
Diffstat (limited to 'core.go')
-rw-r--r--core.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/core.go b/core.go
index 3aa0c7c..b15ca8b 100644
--- a/core.go
+++ b/core.go
@@ -91,7 +91,7 @@ func (api *API) requestHandler(resource interface{}) http.HandlerFunc {
code, data, header := handler(request.Form, request.Header)
- content, err := json.Marshal(data)
+ content, err := json.MarshalIndent(data, "", " ")
if err != nil {
rw.WriteHeader(http.StatusInternalServerError)
return
bgstack15