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