const config = require('./config'); class DB { constructor() { this.config = null; } loadConfig() { this.config = config; } } module.exports = DB;