Files
2026-07-26 18:25:37 +09:00

6 lines
173 B
JavaScript

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