1
Hello, is there any way to persist a JSON in postgres with the GO language?
I don’t want to do a manual Insert, I want to map my JSON with a struct and persist, similar to Hibernate in Java.
found this lib http://godoc.org/gopkg.in/mgo.v2/bson
Convert my JSON to BSON and persist?
How would that look in the code?