Added Setbalance and balance check

This commit is contained in:
2025-12-05 18:09:24 +05:30
parent 1cc2759511
commit d458ada051
3 changed files with 66 additions and 5 deletions

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