module.exports = { prefix: 'logbusy:', handler: async (bot, query) => { const logName = query.data.split(':')[1]; // Mostra un alert all'utente che il file non si puo scaricare bot.answerCallbackQuery(query.id, { text: `La registrazione "${logName}" รจ in corso. Fermala per scaricare il file.`, show_alert: true }); } };