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;