// bot.js const dns = require("dns"); let { Bot } = require("grammy"); // ✅ Force IPv4 first dns.setDefaultResultOrder("ipv4first"); const TOKEN = "8720875329:AAEohXxy_7mJvP8sXOqhJP5kpozpOE-LkOU"; // Bot create const bot = new Bot(TOKEN); // ❌ No commands, no handlers // Start bot (long polling) bot.start({ onStart: () => { console.log("Bot started successfully ✅"); } });