mbot/commands/ping.js
2024-05-10 00:19:26 -07:00

9 lines
193 B
JavaScript

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