mirror of
https://github.com/mgerb/mywebsite
synced 2026-01-12 10:52:47 +00:00
31 lines
339 B
JavaScript
31 lines
339 B
JavaScript
|
|
/**
|
|
* Module exports.
|
|
*/
|
|
|
|
module.exports = exports = require('./manager');
|
|
|
|
/**
|
|
* Expose Collection.
|
|
*
|
|
* @api public
|
|
*/
|
|
|
|
exports.Collection = require('./collection');
|
|
|
|
/**
|
|
* Expose Promise.
|
|
*
|
|
* @api public
|
|
*/
|
|
|
|
exports.Promise = require('./promise');
|
|
|
|
/**
|
|
* Expose util.
|
|
*
|
|
* @api public
|
|
*/
|
|
|
|
exports.util = require('./util');
|