IndiumJS/commands/utilities/ping.js

11 lines
268 B
JavaScript
Raw Normal View History

2023-08-21 11:23:36 -04:00
const { SlashCommandBuilder } = require('discord.js');
module.exports = {
data: new SlashCommandBuilder()
.setName('Ping')
.setDescription('Replies with Pong!'),
async execute(interaction) {
await interaction.reply('Pong!');
},
};