Files
illegitimate-bot/src/components/buttons/inactiveapplicationdeny.ts
2024-01-14 17:10:27 +01:00

15 lines
345 B
TypeScript

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