works and runs, need readme
This commit is contained in:
12
src/commands/deleteAlert.ts
Normal file
12
src/commands/deleteAlert.ts
Normal 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);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user