feat: Finish bot v1

This commit is contained in:
2024-02-26 14:45:34 +01:00
parent b23f6ffac6
commit 8ac3deace3
12 changed files with 307 additions and 10 deletions

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

@ -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')
},
}