summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/labstack/echo/cookbook/twitter/model/user.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/labstack/echo/cookbook/twitter/model/user.go')
-rw-r--r--vendor/github.com/labstack/echo/cookbook/twitter/model/user.go13
1 files changed, 0 insertions, 13 deletions
diff --git a/vendor/github.com/labstack/echo/cookbook/twitter/model/user.go b/vendor/github.com/labstack/echo/cookbook/twitter/model/user.go
deleted file mode 100644
index e063c89b..00000000
--- a/vendor/github.com/labstack/echo/cookbook/twitter/model/user.go
+++ /dev/null
@@ -1,13 +0,0 @@
-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"`
- }
-)