diff --git a/src/connectors/mysql.js b/src/connectors/mysql.js index 3209bb2..86a7984 100644 --- a/src/connectors/mysql.js +++ b/src/connectors/mysql.js @@ -35,6 +35,6 @@ pool.getConnection(function (err, connection) { } }); -//const pomisePool = pool.promise(); const query = util.promisify(pool.query).bind(pool); + export default { query };