mbot/commands/test/ping.js
2024-05-10 03:39:09 -07:00

11 lines
250 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!');
}
}