File size: 267 Bytes
5e641bf
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
const { SlashCommandBuilder } = require('discord.js');

module.exports = {
    data: new SlashCommandBuilder()
        .setName('ping')
        .setDescription('Replies with Pong!'),
    async execute(interaction) {
        await interaction.reply('Pong!');
    },
};