Add Discord.js stuff

This commit is contained in:
2025-07-30 17:18:48 +02:00
parent 1d7c16eea3
commit f67ddacb88
9 changed files with 1659 additions and 0 deletions

10
commands/fetch/fetch.js Normal file
View File

@@ -0,0 +1,10 @@
const { SlashCommandBuilder } = require('discord.js');
module.exports = {
data: new SlashCommandBuilder()
.setName('fetch')
.setDescription('Fetch\'s All Youre Data\'s !! :3'),
async execute(interaction) {
await interaction.reply('fuck yoy');
},
};