forked from snxraven/DiscordJS-v14-Template
17 lines
514 B
JavaScript
17 lines
514 B
JavaScript
const { EmbedBuilder } = require('discord.js');
|
|
|
|
module.exports = {
|
|
name: "ping",
|
|
description: "Returns websocket latency",
|
|
|
|
run: async (client, interaction) => {
|
|
const embed = new EmbedBuilder()
|
|
.setColor("#FF0000")
|
|
.setTitle("🏓 Pong!")
|
|
.setDescription(`Latency : ${client.ws.ping}ms`)
|
|
.setTimestamp()
|
|
.setFooter({ text: `Requested by ${interaction.user.tag}`, iconURL: `${interaction.user.displayAvatarURL()}` });
|
|
interaction.followUp({ embeds: [embed] });
|
|
},
|
|
};
|