File size: 231 Bytes
1e92f2d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | const driver = global.MONGOOSE_DRIVER_PATH || "./drivers/node-mongodb-native";
/*!
* Connection
*/
const Connection = require(driver + "/connection");
/*!
* Collection
*/
const Collection = require(driver + "/collection");
|