31 lines
288 B
JavaScript
Raw Normal View History

2017-01-30 15:44:47 +01:00
'use strict';
/**
* Module dependencies
*/
/**
* Redis hook
*/
module.exports = function () {
const hook = {
/**
* Default options
*/
defaults: {},
/**
* Initialize the hook
*/
initialize: cb => {
cb();
}
};
return hook;
};