From 79815ef4f4ef9545b996ec21d68889ec26ee2483 Mon Sep 17 00:00:00 2001 From: Tesla369 <56352298+Tesla369@users.noreply.github.com> Date: Wed, 16 Oct 2019 12:38:10 +0530 Subject: [PATCH] Update route.js --- routes/route.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/routes/route.js b/routes/route.js index cb8a48c..8536df5 100644 --- a/routes/route.js +++ b/routes/route.js @@ -6,6 +6,10 @@ 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 });