1 2 3 4 5 6 7 8 9 10 11 12
package model import "gopkg.in/mgo.v2/bson" type ( Post struct { ID bson.ObjectId `json:"id" bson:"_id,omitempty"` To string `json:"to" bson:"to"` From string `json:"from" bson:"from"` Message string `json:"message" bson:"message"` } )