The helper bot for LHT https://lhtranslation.net
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.
 
 
Senko/bot/startup/run/collect.js

8 lines
222 B

const {Collection} = require("discord.js");
module.exports = async client => {
for (const x of ['commands', 'events']) {
client[x] = new Collection();
await require(`../collect/${x}`)(client);
}
};