Added Setbalance and balance check
This commit is contained in:
10
app/src/commands/cookies.ts
Normal file
10
app/src/commands/cookies.ts
Normal file
@@ -0,0 +1,10 @@
|
||||
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] });
|
||||
}
|
||||
});
|
||||
Reference in New Issue
Block a user