Created
March 1, 2016 22:25
-
-
Save eduncan911/c51a3cd6072ea6b39ace to your computer and use it in GitHub Desktop.
json_indent.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*Package main is a simple test of Json Identing (aka pretty print) | |
To run: | |
$ go run main.go | |
{ | |
"eventId": "xyz", | |
"articleId": "123" | |
} | |
The json is formatted nicely with linebreaks and 2x spaces. | |
*/ | |
package main | |
import ( | |
"encoding/json" | |
"fmt" | |
) | |
type ArticleDrafted struct { | |
*Event | |
} | |
type Event struct { | |
EventID EventID `json:"eventId,omitempty"` | |
ArticleID ArticleID `json:"articleId,omitempty"` | |
} | |
type EventID string | |
type ArticleID string | |
func main() { | |
t := ArticleDrafted{ | |
Event: &Event{ | |
EventID: "xyz", | |
ArticleID: "123", | |
}, | |
} | |
b, err := json.MarshalIndent(&t, "", " ") | |
if err != nil { | |
fmt.Println(err) | |
return | |
} | |
fmt.Println(string(b)) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment