1 2 3 4 5 6 7 8 9 10
const { SlashCommandBuilder } = require('@discordjs/builders'); module.exports = { data: new SlashCommandBuilder() .setName('ping') .setDescription('Replies with Pong!'), async execute(interaction) { return interaction.reply('Pong!'); }, };