Files
bamboo/extend/redis/index.js
T
2022-05-31 08:34:53 +08:00

15 lines
285 B
JavaScript

/**
* redis
*
* 参考文档:
* https://github.com/luin/ioredis
* https://luin.github.io/ioredis/classes/Redis.html
*/
const config = require("./config")
const Redis = require("ioredis");
module.exports = async (app) => {
const redis = new Redis(config);
app.redis = redis
}