Holana/host.js

7 lines
269 B
JavaScript
Raw Normal View History

2023-04-29 02:59:08 -07:00
// const express = require('express');
// const app = express();
// const port = 3000;
// app.listen(port, () => console.log(`Bot running on http://127.0.0.1:${port}`));
const http = require("http");
http.createServer((_, res) => res.end("Holana online")).listen(8080)