Spaces:
Runtime error
Runtime error
File size: 274 Bytes
6466b9d |
1 2 3 4 5 6 7 8 9 10 |
import { CommandInteraction, SlashCommandBuilder } from 'discord.js';
module.exports = {
data: new SlashCommandBuilder()
.setName('ping')
.setDescription('Replies with Pong!'),
async execute(interaction: CommandInteraction) {
await interaction.reply('Pong!');
}
}; |