Create keep_alive.js

This commit is contained in:
Diwas Atreya
2021-04-25 12:43:51 +05:45
committed by GitHub
parent 34efb57e41
commit 2246029247

6
keep_alive.js Normal file
View File

@@ -0,0 +1,6 @@
const express = require('express');
const app = express();
const port = 2323;
app.get('/', (req, res) => res.send('Bot is is Alive!'));
app.listen(port, () => console.log(`Atreya YT is listening to http://localhost:${port}`));