JaBa/newCommands/Fun/8ball.js

11 lines
289 B
JavaScript
Raw Normal View History

2024-12-05 21:13:43 +05:00
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");
},
});