Skip to content

Instantly share code, notes, and snippets.

@vaguecoder
Last active December 16, 2021 17:43
Show Gist options
  • Save vaguecoder/fd9b1bdc11e22c2948a0289498d138a1 to your computer and use it in GitHub Desktop.
Save vaguecoder/fd9b1bdc11e22c2948a0289498d138a1 to your computer and use it in GitHub Desktop.
jsonData, err = json.Marshal(data)
if err != nil {
// Handle Error
}
err = ioutil.WriteFile("filename.json", jsonData, 0777)
if err != nil {
// Handle Error
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment