// src/commands/prefix-commands/generalPrefixes/pingPrefix.js const { EmbedBuilder, PermissionsBitField } = require('discord.js'); module.exports = { name: "ping", aliases: ['pg'], permissions: [PermissionsBitField.Flags.SendMessages], description: "Pings the bot", cooldown: 5, async execute(interaction, client, args) { const embed = new EmbedBuilder() .setColor("Blue") .setDescription(` ${client.ws.ping} Pong! `) await interaction.reply({ embeds: [embed] }); } }