mirror of
https://github.com/arthur-pbty/gestion.git
synced 2026-06-03 23:36:35 +02:00
9 lines
225 B
JavaScript
9 lines
225 B
JavaScript
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');
|
|
},
|
|
}; |