16 lines
364 B
JavaScript
Raw Normal View History

module.exports = function(client) {
var Pool = require('../../pool');
var inherits = require('inherits');
// Inherit from the `Pool` constructor's prototype.
function Pool_PG() {
2014-04-16 01:23:50 -04:00
this.client = client;
Pool.apply(this, arguments);
}
inherits(Pool_PG, Pool);
// Assign the newly extended `Pool` constructor to the client object.
client.Pool = Pool_PG;
};