const {SlashCommandBuilder, CommandInteraction, PremissionFlagsBits} = require("discord.js");
module.exports = {
data: new SlashCommandBuilder()
.setName("ping")
.setDescription("Pong")
.setDefaultMemberPermissions(PremissionFlagsBits.Administrator),
execute(interaction) {
interaction.reply({content: "Pong", ephermal: true})
},
};