mirror of
https://github.com/cwinfo/matterbridge.git
synced 2025-07-21 00:56:47 +00:00
Update vendor
This commit is contained in:
13
vendor/github.com/labstack/echo/cookbook/twitter/model/user.go
generated
vendored
Normal file
13
vendor/github.com/labstack/echo/cookbook/twitter/model/user.go
generated
vendored
Normal file
@ -0,0 +1,13 @@
|
||||
package model
|
||||
|
||||
import "gopkg.in/mgo.v2/bson"
|
||||
|
||||
type (
|
||||
User struct {
|
||||
ID bson.ObjectId `json:"id" bson:"_id,omitempty"`
|
||||
Email string `json:"email" bson:"email"`
|
||||
Password string `json:"password,omitempty" bson:"password"`
|
||||
Token string `json:"token,omitempty" bson:"-"`
|
||||
Followers []string `json:"followers,omitempty" bson:"followers,omitempty"`
|
||||
}
|
||||
)
|
Reference in New Issue
Block a user