Some checks failed
Deploy to Firebase Hosting on merge / build_and_deploy (push) Has been cancelled
10 lines
176 B
JavaScript
10 lines
176 B
JavaScript
'use strict';
|
|
|
|
const PoolCluster = require('./pool_cluster.js');
|
|
|
|
function createPoolCluster(config) {
|
|
return new PoolCluster(config);
|
|
}
|
|
|
|
module.exports = createPoolCluster;
|