From b1244d127e2c9a5d13a090077aa3dbabe1d08d35 Mon Sep 17 00:00:00 2001 From: Rafael dos Santos Date: Tue, 10 Jul 2018 22:01:52 -0300 Subject: [PATCH] Update index.js --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 6f0aba2..d00987c 100644 --- a/index.js +++ b/index.js @@ -5,7 +5,7 @@ const const server = http.createServer((request, response) => { response.writeHead(200, {"Content-Type": "text/plain"}); - response.end(`Congresso de TI! Machine: ${os.hostname()}, Type: ${os.type()}`); + response.end(`Congresso de TI - Teste message! Machine: ${os.hostname()}, Type: ${os.type()}`); }); const port = process.env.PORT || 1337;