11 lines
241 B
JavaScript
Raw Normal View History

2023-11-26 23:02:34 +00:00
const { SlashCommandBuilder } = require('discord.js');
2023-11-17 23:24:15 +00:00
2023-11-26 23:02:34 +00:00
module.exports = {
data: new SlashCommandBuilder()
.setName('ping')
.setDescription('Replies with pong!'),
2023-11-19 23:59:41 +00:00
2023-11-26 23:02:34 +00:00
async execute(interaction) {
await interaction.reply('Pong!');
},
};