// index.js require('dotenv').config(); const Bot = require('./src/Bot'); const bot = new Bot(); bot.start(process.env.BOT_TOKEN).catch(error => { console.error('Failed to start bot:', error); process.exit(1); });