15 lines
340 B
JavaScript

module.exports = function(client) {
var Pool = require('../../pool');
var inherits = require('inherits');
// Inherit from the `Pool` constructor's prototype.
function Pool_PG() {
Pool.apply(this, arguments);
}
inherits(Pool_PG, Pool);
// Assign the newly extended `Pool` constructor to the client object.
client.Pool = Pool_PG;
};