Files
general-purpose-bot/commands/utility/ping.js
2023-11-07 12:19:25 +01:00

11 lines
262 B
JavaScript

const { SlashCommandBuilder } = require('discord.js');
module.exports = {
category: 'utility',
data: new SlashCommandBuilder()
.setName('ping')
.setDescription('Replies with Pong!'),
async execute(interaction) {
await interaction.reply('Pong!');
},
};