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