16 lines
412 B
JavaScript
16 lines
412 B
JavaScript
function MysqlConfig () {
|
|
this.database = 'default';
|
|
this.username = 'default';
|
|
this.password = 'default';
|
|
this.configure = (config) => {
|
|
if (!config) {
|
|
return console.log('No MySQL config received.');
|
|
}
|
|
const {database, username, password} = config;
|
|
this.database = database;
|
|
this.username = username;
|
|
this.password = password;
|
|
};
|
|
};
|
|
|
|
module.exports = new MysqlConfig();
|