Features
Features are useful if you want to load all the files in a specific folder!
Examples
// Imagine you need 2 guildMemberRemove events
module.exports = (client) => {
client.on("guildMemberRemove", (member) => {
console.log(member.user.tag);
});
};
Last updated
Was this helpful?