Spaces:
Running
Running
File size: 340 Bytes
d3d070d 3d360d9 d3d070d 3d360d9 d3d070d 3d360d9 d3d070d |
1 2 3 4 5 6 7 8 9 |
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('<h1>🤖 Telegram FFmpeg Bot is running on Hugging Face Spaces!</h1>');
}).listen(PORT, () => {
console.log(`🌐 Web server running on port ${PORT}`);
}); |