added panel mgmt
This commit is contained in:
12
panel-mgmt/backend/node_modules/mysql2/lib/connection.js
generated
vendored
Normal file
12
panel-mgmt/backend/node_modules/mysql2/lib/connection.js
generated
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
'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;
|
Reference in New Issue
Block a user