ajoute messageCreate

This commit is contained in:
VALOU3336
2024-02-14 08:19:27 +01:00
parent 7469ee4736
commit 576f5eb05b
6 changed files with 86 additions and 24 deletions
+9
View File
@@ -0,0 +1,9 @@
const { MessageEmbed } = require('discord.js');
module.exports = {
name: 'ping',
description: 'Command to check the latency of the bot.',
async execute(message, args, client) {
message.channel.send('test');
},
};