10 lines
258 B
JavaScript
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');
|
|
},
|
|
}; |