primer cambio
This commit is contained in:
13
node_modules/promise-mysql/lib/poolConnection.js
generated
vendored
Normal file
13
node_modules/promise-mysql/lib/poolConnection.js
generated
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
const Connection = require('./connection.js');
|
||||
|
||||
class poolConnection extends Connection {
|
||||
constructor(config, _connection) {
|
||||
super(config, _connection);
|
||||
}
|
||||
|
||||
release() {
|
||||
this.connection.release();
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = poolConnection;
|
||||
Reference in New Issue
Block a user