import { UserHelpers } from "../helpers/user.js"; export async function CacheMiddleware(ctx, next) { ctx.cache = UserHelpers.getFreshAccountCache(); await next(); }