mirror of
https://github.com/42wim/matterbridge.git
synced 2024-11-16 00:49:26 +01: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"`
|
|
}
|
|
)
|