import { SlashCommandBuilder } from 'discord.js'; export default { data: new SlashCommandBuilder() .setName('ping') .setDescription('Replies with Pong!'), async execute(interaction, api) { await interaction.reply('Pong!'); } };