From 79924f0de572da676dfe191711c6946682f1025b Mon Sep 17 00:00:00 2001 From: Dev-Shankar-Paul <56624437+Dev-Shankar-Paul@users.noreply.github.com> Date: Wed, 16 Oct 2019 12:39:17 +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..315c074 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("hacktoberfest is cool!"); +}); + router.post("add", (req, res) => { // Add logic here });