Files
illegitimate-bot/src/components/buttons/inactiveapplicationdeny.ts
2024-10-07 18:16:23 +02:00

14 lines
337 B
TypeScript

import { IButton } from "~/interfaces"
export default {
name: "inactiveapplicationdeny",
description: "Denies an inactivity application.",
async execute({ interaction }) {
await interaction.reply({
content: "This button is currently disabled.",
ephemeral: true
})
}
} as IButton