aboutsummaryrefslogtreecommitdiff
path: root/commands/ping.js
blob: c5b4885297edc6407f8a3511c33b7e6276eff983 (plain) (blame)
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!');
    },
};