Compare commits

...

2 commits

Author SHA1 Message Date
ea193ceddd
Event folder 2022-06-18 01:06:38 +02:00
e7a49f7828
Change ESLint rule about brace-style 2022-06-18 01:06:31 +02:00
3 changed files with 22 additions and 4 deletions

View file

@ -9,7 +9,7 @@
},
"rules": {
"arrow-spacing": ["warn", { "before": true, "after": true }],
"brace-style": ["error", "stroustrup", { "allowSingleLine": true }],
"brace-style": ["error", { "allowSingleLine": true }],
"comma-dangle": ["error", "always-multiline"],
"comma-spacing": "error",
"comma-style": "error",

7
src/events/ready.js Normal file
View file

@ -0,0 +1,7 @@
module.exports = {
name: 'ready',
once: true,
execute() {
console.log('Prêt !');
},
};

View file

@ -1,10 +1,21 @@
const fs = require('node:fs');
const path = require('node:path');
const { Client, Intents } = require('discord.js');
const { token } = require('../config/config.json');
const client = new Client({ intents: [Intents.FLAGS.GUILDS] });
client.once('ready', () => {
console.log('Prêt !');
});
const eventsPath = path.join(__dirname, 'events');
const eventFiles = fs.readdirSync(eventsPath).filter(file => file.endsWith('.js'));
for (const file of eventFiles) {
const filePath = path.join(eventsPath, file);
const event = require(filePath);
if (event.once) {
client.once(event.name, (...args) => event.execute(...args));
} else {
client.on(event.name, (...args) => event.execute(...args));
}
}
client.login(token);