spee.ch/config/mysqlConfig.js
2018-03-27 18:25:23 -07:00

13 lines
268 B
JavaScript

function mysql () {
this.db = {};
this.configure = (db) => {
if (!db) {
return console.log('No MySQL config received.');
}
// configure credentials
console.log('configuring mysql...');
this.db = db;
};
};
module.exports = new mysql();