This commit is contained in:
2023-11-07 12:19:25 +01:00
parent 54eae36b13
commit 13ac74a764
11 changed files with 186 additions and 3 deletions

11
commands/utility/ping.js Normal file
View File

@@ -0,0 +1,11 @@
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!');
},
};