'use strict'; /** * Module dependencies */ /** * Redis hook */ module.exports = function () { const hook = { /** * Default options */ defaults: {}, /** * Initialize the hook */ initialize: cb => { cb(); } }; return hook; };