diff --git a/commands/testing/ping.js b/commands/testing/ping.js new file mode 100644 index 0000000..a27265b --- /dev/null +++ b/commands/testing/ping.js @@ -0,0 +1,10 @@ +const { SlashCommandBuilder } = require('discord.js'); + +module.exports = { + data: new SlashCommandBuilder() + .setName('ping') + .setDescription('Replies with pong!'), + async execute(interaction) { + await interaction.reply('Pong!'); + }, +}; \ No newline at end of file