2014-10-08 19:44:14 -04:00
|
|
|
"use strict";
|
|
|
|
|
2014-10-20 16:56:45 -04:00
|
|
|
module.exports = function(driverType, connObject) {
|
2014-10-08 19:44:14 -04:00
|
|
|
|
2014-10-20 16:56:45 -04:00
|
|
|
var connection = null,
|
|
|
|
driverType = null;
|
|
|
|
|
|
|
|
return {
|
|
|
|
connect: function(driverName, connObject) {
|
|
|
|
driverType = driverName;
|
|
|
|
connection = connObject;
|
|
|
|
}
|
|
|
|
};
|
2014-10-08 19:44:14 -04:00
|
|
|
};
|