Forgot to remove tmp command

This commit is contained in:
2025-03-27 13:48:04 +01:00
parent 9e4fe28c81
commit 0cf0deada7

View File

@@ -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