diff options
Diffstat (limited to 'node_modules/mongoose/lib/driver.js')
-rw-r--r-- | node_modules/mongoose/lib/driver.js | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/node_modules/mongoose/lib/driver.js b/node_modules/mongoose/lib/driver.js new file mode 100644 index 0000000..cf7ca3d --- /dev/null +++ b/node_modules/mongoose/lib/driver.js @@ -0,0 +1,15 @@ +'use strict'; + +/*! + * ignore + */ + +let driver = null; + +module.exports.get = function() { + return driver; +}; + +module.exports.set = function(v) { + driver = v; +}; |