mirror of
https://github.com/JonnyBro/JaBa.git
synced 2025-01-06 10:43:02 +05:00
10 lines
289 B
JavaScript
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");
|
|
},
|
|
});
|