forked from lug/matterbridge
Update vendor
This commit is contained in:
12
vendor/github.com/labstack/echo/cookbook/twitter/model/post.go
generated
vendored
Normal file
12
vendor/github.com/labstack/echo/cookbook/twitter/model/post.go
generated
vendored
Normal file
@@ -0,0 +1,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"`
|
||||
}
|
||||
)
|
||||
Reference in New Issue
Block a user