index.js 384 B

123456789101112
  1. // This is a boilerplate file which should not need to be changed.
  2. module.exports = require('machine').pack({
  3. pkg: require('./package.json'),
  4. dir: __dirname
  5. });
  6. //... well except for this.
  7. // Also give the driver a `mysql` property, so that it provides access
  8. // to the `mysql` library for Node.js. (See http://npmjs.com/package/mysql)
  9. module.exports.mysql = require('mysql');