diff --git a/cloud-shell-hello/hello.js b/cloud-shell-hello/hello.js index 0d3e147..83ee211 100644 --- a/cloud-shell-hello/hello.js +++ b/cloud-shell-hello/hello.js @@ -3,7 +3,7 @@ const http = require('http'); const hostname = '127.0.0.1'; const port = 8080; -const message = 'Hello Cloud Gurus!'; +const message = 'Hello Cloud Gurus, it is awesome!'; const fullMessage = `${message}\n`; const server = http.createServer((request, response) => {