You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
282 B

'use strict';
var Connection = require('./lib/connection');
module.exports = {
Connection: Connection,
createConnection: function (options, implOptions, readyCallback) {
var c = new Connection(options, implOptions, readyCallback);
c.connect();
return c;
}
};