2018-03-27 12:32:07 -07:00
|
|
|
function mysql () {
|
2018-03-27 16:08:01 -07:00
|
|
|
this.db = {};
|
2018-03-27 18:25:23 -07:00
|
|
|
this.configure = (db) => {
|
|
|
|
if (!db) {
|
2018-03-12 19:33:09 -07:00
|
|
|
return console.log('No MySQL config received.');
|
2018-03-12 19:26:03 -07:00
|
|
|
}
|
2018-03-27 16:08:01 -07:00
|
|
|
// configure credentials
|
2018-03-27 18:25:23 -07:00
|
|
|
console.log('configuring mysql...');
|
2018-03-27 16:08:01 -07:00
|
|
|
this.db = db;
|
2018-03-09 16:45:24 -08:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2018-03-27 12:32:07 -07:00
|
|
|
module.exports = new mysql();
|