Skip to content

Instantly share code, notes, and snippets.

@zmarcantel
Last active August 29, 2015 13:57
Show Gist options
  • Save zmarcantel/9841912 to your computer and use it in GitHub Desktop.
Save zmarcantel/9841912 to your computer and use it in GitHub Desktop.
Usage
=====
result, err = json.MarshalIndent(someStruct, "", " ")
where someStruct is of type
type ColumnDescriptor struct {
Name string
Type string
Primary bool
}
Result
======
{
"Name": "items",
"Type": "SET\u003cUUID\u003e",
"Primary": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment