Spaces:
Runtime error
Runtime error
| 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!'); | |
| } | |
| }; |