From 113d6db097a42017e672dc079caea55f60dbd0d0 Mon Sep 17 00:00:00 2001 From: VANDEMATARAM <46159712+VANDEMATARAM@users.noreply.github.com> Date: Wed, 16 Oct 2019 12:38:29 +0530 Subject: [PATCH] Update route.js changed --- routes/route.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/routes/route.js b/routes/route.js index cb8a48c..afa9b5d 100644 --- a/routes/route.js +++ b/routes/route.js @@ -5,6 +5,10 @@ const router = express.Router(); router.get("/check", (req, res) => { res.send("Congratulations! Your app works! :)"); }); +//copied text +router.get("/hello", (req, res) => { + res.send("hacktoberfeast is cool :)"); +}); router.post("add", (req, res) => { // Add logic here