You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
Natsuki/util/cache/ar.js

9 lines
217 B

const AR = require('../../models/ar');
module.exports = async client => {
client.misc.cache.ar = new Map();
for await (const ar of AR.find()) {
client.misc.cache.ar.set(ar.gid, ar.triggers);
}
};