2023-06-05 12:25:50 +09:00
|
|
|
import express from "express";
|
|
|
|
const express_app = express();
|
|
|
|
|
|
|
|
express_app.get("/", (_, res) => {
|
2023-06-11 18:05:13 +09:00
|
|
|
res.send("<h1>2K2R namebot 24/7 with repl.it</h1>");
|
2023-06-05 12:25:50 +09:00
|
|
|
});
|
|
|
|
|
|
|
|
express_app.listen(80, () => {
|
|
|
|
console.log("[EXPRESS] Ready: express server");
|
|
|
|
});
|
|
|
|
|
|
|
|
await import("./out/main.js");
|