Primeiro commit
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
import express from "express";
|
||||
|
||||
const app = express();
|
||||
|
||||
app.get("/health", (req, res) => {
|
||||
res.json({
|
||||
status : "OK",
|
||||
message : "Projeto WEB version 1.0.0"
|
||||
})
|
||||
});
|
||||
|
||||
app.listen(5000, () => {
|
||||
console.log("Servidor inicializado!!!")
|
||||
});
|
||||
Reference in New Issue
Block a user