Files
fn-serverless/examples/blog/models/post.go
2016-08-30 16:47:34 -03:00

10 lines
218 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"`
}