Ocean/CustomerDB/AccessDB.go
2014-04-26 11:18:56 +02:00

20 lines
310 B
Go

package CustomerDB
import "labix.org/v2/mgo"
/*
Get the database instance of the MGo Mongo driver.
*/
func DB() (result *mgo.Database) {
result = db
return
}
/*
Get directly the GridFS instance of the Mgo Mongo driver.
*/
func GridFS() (result *mgo.GridFS) {
result = gridFS
return
}