mirror of
https://github.com/arthur-pbty/gestion.git
synced 2026-06-03 15:07:26 +02:00
26 lines
1.0 KiB
JavaScript
26 lines
1.0 KiB
JavaScript
const fs = require('fs');
|
|
const path = require('path');
|
|
|
|
module.exports = (client) => {
|
|
let count = 0;
|
|
const loadEvents = (dir) => {
|
|
fs.readdirSync(path.join(__dirname, dir)).forEach(file => {
|
|
const filePath = path.join(__dirname, dir, file);
|
|
if (fs.statSync(filePath).isDirectory()) {
|
|
loadEvents(path.join(dir, file));
|
|
} else if (file.endsWith('.js')) {
|
|
delete require.cache[require.resolve(filePath)];
|
|
const event = require(filePath);
|
|
if (typeof event.execute === 'function') {
|
|
client.on(event.name, (...args) => event.execute(...args, client));
|
|
console.log(`Event ${event.name} loaded`);
|
|
count++;
|
|
} else {
|
|
console.error(`Event ${event.name} does not have an execute method.`);
|
|
}
|
|
}
|
|
});
|
|
}
|
|
loadEvents('../events');
|
|
console.log(`Event => ${count} chargé sur le bot`)
|
|
} |