mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-14 06:10:27 +00:00
14 lines
398 B
Go
14 lines
398 B
Go
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"`
|
|
}
|
|
)
|