Skip to content

Instantly share code, notes, and snippets.

@ariesmcrae
Created October 4, 2018 23:54
Show Gist options
  • Save ariesmcrae/767fba6a875cca225f8fcb368347ebfc to your computer and use it in GitHub Desktop.
Save ariesmcrae/767fba6a875cca225f8fcb368347ebfc to your computer and use it in GitHub Desktop.
secret: go json struct unmarshall util
package util
import (
"encoding/json"
)
func Unmarshall(jsonPayload string, v interface{}) error {
return json.Unmarshal([]byte(jsonPayload), v)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment