Files
AuroraBot-discord/app/src/commands/cookies.ts

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] });
}
});