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.
12 lines
294 B
12 lines
294 B
'use strict';
|
|
|
|
const BaseConnection = require('./base/connection.js');
|
|
|
|
class Connection extends BaseConnection {
|
|
promise(promiseImpl) {
|
|
const PromiseConnection = require('./promise/connection.js');
|
|
return new PromiseConnection(this, promiseImpl);
|
|
}
|
|
}
|
|
|
|
module.exports = Connection;
|
|
|