9 lines
193 B
JavaScript
9 lines
193 B
JavaScript
|
module.exports = {
|
||
|
data: new SlashCommandBuilder()
|
||
|
.setName('ping')
|
||
|
.setDescription('Replies with pong.')
|
||
|
async execute(interaction) {
|
||
|
await interaction.reply('Pong!');
|
||
|
}
|
||
|
}
|