mirror of
https://github.com/strapi/strapi.git
synced 2025-07-17 14:02:21 +00:00
31 lines
288 B
JavaScript
Executable File
31 lines
288 B
JavaScript
Executable File
'use strict';
|
|
|
|
/**
|
|
* Module dependencies
|
|
*/
|
|
|
|
/**
|
|
* Redis hook
|
|
*/
|
|
|
|
module.exports = function () {
|
|
const hook = {
|
|
|
|
/**
|
|
* Default options
|
|
*/
|
|
|
|
defaults: {},
|
|
|
|
/**
|
|
* Initialize the hook
|
|
*/
|
|
|
|
initialize: cb => {
|
|
cb();
|
|
}
|
|
};
|
|
|
|
return hook;
|
|
};
|