Files
how2ice 44cca8f122 init
2025-08-14 23:34:11 +09:00

13 lines
246 B
JavaScript
Executable File

'use strict';
const BasePool = require('./base/pool.js');
class Pool extends BasePool {
promise(promiseImpl) {
const PromisePool = require('./promise/pool.js');
return new PromisePool(this, promiseImpl);
}
}
module.exports = Pool;