mbot/commands/ping.js

9 lines
193 B
JavaScript
Raw Normal View History

2024-05-10 07:19:26 +00:00
module.exports = {
data: new SlashCommandBuilder()
.setName('ping')
.setDescription('Replies with pong.')
async execute(interaction) {
await interaction.reply('Pong!');
}
}