Files
archived-Recluse-Bot/keep_alive.js
2021-04-25 12:43:51 +05:45

7 lines
229 B
JavaScript

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}`));