File size: 367 Bytes
d3d070d
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
const http = require('http');
const PORT = process.env.PORT || 3000;

http.createServer((req, res) => {
  res.writeHead(200, {'Content-Type': 'text/html; charset=utf-8'});
  res.end('<h1>🤖 Telegram FFmpeg Bot is running!</h1><p>This confirms the server is up.</p>');
}).listen(PORT, () => {
  console.log(`🌐 Web server running at http://localhost:${PORT}`);
});