mirror of
https://github.com/KevinMidboe/zoff.git
synced 2025-10-29 18:00:23 +00:00
31 lines
339 B
JavaScript
Executable File
31 lines
339 B
JavaScript
Executable File
|
|
/**
|
|
* 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');
|