db.js 127 B

123456789
  1. const MySQL = require('./MySQL');
  2. const db = new MySQL();
  3. (async () => {
  4. await db.connect();
  5. })();
  6. module.exports = db;