yttest / hit.js
ulduldp's picture
Update hit.js
c6b9e65 verified
raw
history blame contribute delete
394 Bytes
// 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 ✅");
}
});