Files
diploma_todoapp/backend/node_modules/mongoose/lib/driver.js
2026-04-02 17:50:10 +08:00

16 lines
161 B
JavaScript

'use strict';
/*!
* ignore
*/
let driver = null;
module.exports.get = function() {
return driver;
};
module.exports.set = function(v) {
driver = v;
};