works and runs, need readme

This commit is contained in:
GooeyTuxedo
2023-04-18 13:35:09 -07:00
parent cea18e6a5f
commit 5b2975a0cc
7 changed files with 104 additions and 49 deletions

View File

@ -0,0 +1,12 @@
import { SlashCommandBuilder, ChatInputCommandInteraction } from 'discord.js';
import { handleAlertDeleteCommand } from '../handlers';
module.exports = {
data: new SlashCommandBuilder()
.setName('alert-delete')
.setDescription('Remove your gwei alert threshold'),
async execute(interaction: ChatInputCommandInteraction) {
return await handleAlertDeleteCommand(interaction);
}
}