14 lines
182 B
JavaScript
14 lines
182 B
JavaScript
const config = require('./config');
|
|
|
|
class DB {
|
|
constructor() {
|
|
this.config = null;
|
|
}
|
|
|
|
loadConfig() {
|
|
this.config = config;
|
|
}
|
|
}
|
|
|
|
module.exports = DB;
|