mirror of
https://github.com/danbulant/covid
synced 2026-06-18 14:11:25 +00:00
14 lines
No EOL
257 B
JavaScript
14 lines
No EOL
257 B
JavaScript
const express = require("express");
|
|
const app = express();
|
|
const PORT = 1025;
|
|
|
|
app.get("/", (req, res)=>{
|
|
res.json({
|
|
code: 200,
|
|
type: "nothing_to_show"
|
|
});
|
|
})
|
|
|
|
app.listen(PORT, ()=>{
|
|
console.log("[APP] Ready on port " + PORT);
|
|
}) |