diff --git a/keep_alive.js b/keep_alive.js new file mode 100644 index 0000000..d74ecfa --- /dev/null +++ b/keep_alive.js @@ -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}`));