aboutsummaryrefslogtreecommitdiff
path: root/commands/uwuify.js
blob: 31032349df9c48c1b70905b1b5bd81c93b1a8d84 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
import { SlashCommandBuilder } from 'discord.js';

export default {
    data: new SlashCommandBuilder()
        .setName('uwuify')
        .setDescription('Just no.'),
    async execute(interaction, bot) {
        return await interaction.reply('No... just no...');
    }
};