From 0cf0deada7625b8c1098f6866a0c51e7c032f1b1 Mon Sep 17 00:00:00 2001 From: Taken Date: Thu, 27 Mar 2025 13:48:04 +0100 Subject: [PATCH] Forgot to remove tmp command --- src/commands/test.ts | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 src/commands/test.ts diff --git a/src/commands/test.ts b/src/commands/test.ts deleted file mode 100644 index d751416..0000000 --- a/src/commands/test.ts +++ /dev/null @@ -1,18 +0,0 @@ -import { SlashCommandBuilder } from "discord.js" -import { ICommand } from "~/typings" -import emoji from "~/utils/Functions/emoji" - -export default { - name: "test", - description: "Test command", - public: false, - dev: true, - data: new SlashCommandBuilder() - .setName("test") - .setDescription("Test command"), - async execute({ interaction }) { - await interaction.reply({ - content: `${emoji("questionmark")} ${emoji("warning")} ${emoji("cross")} ${emoji("checkmark")}` - }) - } -} as ICommand