14 lines
236 B
JavaScript
Executable File
14 lines
236 B
JavaScript
Executable File
"use strict";
|
|
|
|
module.exports = function(driverType, connObject) {
|
|
|
|
var connection = null,
|
|
driverType = null;
|
|
|
|
return {
|
|
connect: function(driverName, connObject) {
|
|
driverType = driverName;
|
|
connection = connObject;
|
|
}
|
|
};
|
|
}; |