module.exports = { command: 'start', handler: (bot, msg) => { const chatId = msg.chat.id; bot.setMyCommands([ { command: 'data', description: 'Mostra tutti i dati' }, { command: 'logs', description: 'Registrazioni logs' }, { command: 'weather', description: 'Mostra i dati meteo' }, { command: 'marine', description: 'Mostra i dati del mare' }, { command: 'backup', description: 'Backup logs - lista file nella cartella data' }, // { command: 'start', description: 'Avvia il bot e configura i comandi' } ]); bot.sendMessage(chatId, 'Benvenuto nel bot MEB!'); } };