// Debug import debugBuilder from "./debugBuilder.js"; const log = new debugBuilder("bot", "messageHandler"); export function replyToInteraction(interaction, message){ interaction.reply({ content: message, fetchReply: true }) .then((message) => log.DEBUG(`Reply sent with content ${message.content}`)) .catch((err) => log.ERROR(err)); }