mbot/commands/test/ping.js

11 lines
255 B
JavaScript
Raw Normal View History

2024-05-10 10:39:09 +00:00
const { SlashCommandBuilder } = require('discord.js');
2024-05-10 07:19:26 +00:00
module.exports = {
data: new SlashCommandBuilder()
.setName('ping')
2024-05-10 17:29:22 +00:00
.setDescription('This replies with pong.'),
2024-05-10 07:19:26 +00:00
async execute(interaction) {
await interaction.reply('Pong!');
}
}