11 lines
268 B
JavaScript
11 lines
268 B
JavaScript
|
const { SlashCommandBuilder } = require('discord.js');
|
||
|
|
||
|
module.exports = {
|
||
|
data: new SlashCommandBuilder()
|
||
|
.setName('Ping')
|
||
|
.setDescription('Replies with Pong!'),
|
||
|
async execute(interaction) {
|
||
|
await interaction.reply('Pong!');
|
||
|
},
|
||
|
};
|