mirror of
https://github.com/SrIzan10/Recluse-Bot.git
synced 2026-05-01 10:55:24 +00:00
7 lines
229 B
JavaScript
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}`));
|