JaBa/newCommands/Fun/8ball.js
2024-12-05 19:13:43 +03:00

10 lines
289 B
JavaScript

import { SlashCommandBuilder } from "discord.js";
import Command from "../../base/newCommand.js";
export default new Command({
data: new SlashCommandBuilder().setName("8ball").setDescription("8ball"),
execute(interaction) {
console.log("8ball");
interaction.reply("8ball");
},
});