11 lines
411 B
TypeScript
11 lines
411 B
TypeScript
import { createCommand } from "@lib/utils";
|
|
import { SlashCommandBuilder, EmbedBuilder } from "discord.js";
|
|
|
|
export const cookies = createCommand({
|
|
data: new SlashCommandBuilder().setName("cookies").setDescription("Say sadhasj"),
|
|
execute: async (interaction) => {
|
|
const embed = new EmbedBuilder().setDescription("HELLO sandwich");
|
|
await interaction.reply({ embeds: [embed] });
|
|
}
|
|
});
|