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