mirror of
https://github.com/fnproject/fn.git
synced 2022-10-28 21:29:17 +03:00
11 lines
265 B
Go
11 lines
265 B
Go
package models
|
|
|
|
import "gopkg.in/mgo.v2/bson"
|
|
|
|
type Post struct {
|
|
ID bson.ObjectId `json:"id" bson:"_id,omitempty"`
|
|
Title string `json:"title" bson:"title"`
|
|
Body string `json:"body" bson:"body"`
|
|
User string `json:"user" bsom:"user"`
|
|
}
|