zoomhandler
Version:
The Best Discord Bot Events & Commands handler
15 lines (14 loc) • 440 B
JavaScript
module.exports = async (client, interaction) => {
if (!interaction.isCommand()) return;
const command = client.interactionCommands.get(interaction.commandName);
if (!command) return;
try {
await command.run({ interaction, client });
} catch (error) {
console.error(error);
await interaction.reply({
content: "There was an error while executing this command!",
ephemeral: true,
});
}
};