const http = require('http'); const PORT = process.env.PORT || 7860; http.createServer((req, res) => { res.writeHead(200, {'Content-Type': 'text/html; charset=utf-8'}); res.end('

🤖 Telegram FFmpeg Bot is running on Hugging Face Spaces!

'); }).listen(PORT, () => { console.log(`🌐 Web server running on port ${PORT}`); });