- Introduced sqlstring module for SQL escape and formatting. - Added supports-color module to detect terminal color support. - Created dashboard and login views with Bootstrap styling. - Implemented user schema in SQL with mock data for testing.
11 lines
216 B
JavaScript
11 lines
216 B
JavaScript
'use strict';
|
|
|
|
const Pool = require('./pool.js');
|
|
const PoolConfig = require('./pool_config.js');
|
|
|
|
function createPool(config) {
|
|
return new Pool({ config: new PoolConfig(config) });
|
|
}
|
|
|
|
module.exports = createPool;
|