I have the following command.
const { SlashCommandBuilder } = require("@discordjs/builders")
module.exports ={
data: new SlashCommandBuilder()
.setName("shutdown")
.setDescription("Shutdown the bot"),
async execute(interaction) {
interaction.reply("Shutting down").then(() => {
client.destroy();
})
}
}
The command should shutdown the bot. The only thing it is doing at the moment is crashing the bot because ReferenceError: client is not defined
.
I appreciate any help