From 7a682d5f07fc5b6af200ab94309b1f24b9464cb6 Mon Sep 17 00:00:00 2001 From: sai sowmith kantipudi Date: Fri, 26 Jan 2024 12:17:41 -0600 Subject: [PATCH] Latest push --- app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.js b/app.js index 541532ebe..07755a52c 100644 --- a/app.js +++ b/app.js @@ -2,7 +2,7 @@ const express = require('express'); const app = express(); const port = 8080; -app.get('/', (req, res) => res.send('Hello World!')); +app.get('/', (req, res) => res.send('My Aws Handson Practice')); app.listen(port); console.log(`App running on http://localhost:${port}`);