コード例 #1
0
ファイル: models.go プロジェクト: thedodd/api
// Collection - get the collection for this data model.
func (model *User) Collection() *mgo.Collection {
	db := common.GetDatabase()
	return db.C("users")
}
コード例 #2
0
ファイル: models.go プロジェクト: thedodd/api
// Collection - get the collection for this data model.
func (model *BuildModel) Collection() *mgo.Collection {
	db := common.GetDatabase()
	return db.C("elasticsearchBuilds")
}