2025-07-30 17:18:48 +02:00

10 lines
258 B
JavaScript

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