Skip to content

Instantly share code, notes, and snippets.

@adnxn
Created May 16, 2020 22:15
Show Gist options
  • Save adnxn/7affb1f7a8ec72e06553617a69b95a31 to your computer and use it in GitHub Desktop.
Save adnxn/7affb1f7a8ec72e06553617a69b95a31 to your computer and use it in GitHub Desktop.
dump golang object
import "encoding/json"
func dump(i interface{}) string {
s, _ := json.MarshalIndent(i, "", "\t")
return string(s)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment