I have a struct like this:
type SavedData struct {
ID bson.ObjectId `bson:"_id"`
Data string
Date time.Time
}
I also have my
collection := database.C("coll_name")
How do I retrieve the last inserted entry in this collection ?
Thank you