7 lines
276 B
JavaScript
7 lines
276 B
JavaScript
module.exports={
|
|
name: "ping",
|
|
description: "Let the ping send you a Pong!",
|
|
execute(interaction, Discord, client) {
|
|
interaction.reply({content: `Pong!\n🏓API Latency is ${Math.round(client.ws.ping)}ms`, flags: Discord.MessageFlags.Ephemeral });
|
|
}
|
|
}; |