Skip to content

Instantly share code, notes, and snippets.

@mottaquikarim
Created January 25, 2021 03:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mottaquikarim/a5b6f2a9aa51e162849096616f480e37 to your computer and use it in GitHub Desktop.
Save mottaquikarim/a5b6f2a9aa51e162849096616f480e37 to your computer and use it in GitHub Desktop.
var profile map[string]interface{}
for {
err := decoder.Decode(&profile)
if err != nil {
panic(err)
}
if err == io.EOF {
break
}
}
// ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment