mirror of
https://github.com/knex/knex.git
synced 2025-07-13 12:00:55 +00:00
12 lines
261 B
JavaScript
12 lines
261 B
JavaScript
![]() |
module.exports = function(client) {
|
||
|
var inherits = require('inherits');
|
||
|
var Pool = require('../../pool');
|
||
|
|
||
|
function Pool_MySQL() {
|
||
|
this.client = client;
|
||
|
Pool.apply(this, arguments);
|
||
|
}
|
||
|
inherits(Pool_MySQL, Pool);
|
||
|
|
||
|
client.Pool = Pool_MySQL;
|
||
|
};
|