ping.js 240 B

12345678910
  1. const { SlashCommandBuilder } = require('discord.js');
  2. module.exports = {
  3. data: new SlashCommandBuilder()
  4. .setName('ping')
  5. .setDescription('Replies with Pong!'),
  6. async execute(interaction) {
  7. await interaction.reply('Pong!');
  8. },
  9. };