covid/app/index.js
2020-03-09 18:48:52 +01:00

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);
})