- 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.
13 lines
246 B
JavaScript
13 lines
246 B
JavaScript
'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;
|