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