UNPKG

yinxing

Version:
18 lines (13 loc) 201 B
const { conn cache, }=require('../cache/redis') const redis=async (ctx, next) => { let c=conn() ctx.redis=c ctx.cache=cache(c) await next(); } module.exports={ redis, }