with any type, not only User like in my code. I was thinking in return a
interface instead a defined struct, but I can't fit this idea to my code,
please could someone give me a hand with this?
Thanks in advance
type User struct {
FirstName string `bson:"first_name"`
LastName string `bson:"last_name"`}
type Mbase struct {
coll *mgo.Collection
sess *mgo.Session}
func (b *Mbase) getObj(attr string, val string) (res *User, err error) {
err = b.coll.Find(bson.M{attr: val}).One(&res)
if err != nil {
return
}
err = nil
return}
--
You received this message because you are subscribed to the Google Groups "golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email to [email protected].
For more options, visit https://groups.google.com/d/optout.