From 1c4bd2fc8d5e2a24306193b038191b6b6693090d Mon Sep 17 00:00:00 2001 From: Anuraj0124 <56624675+Anuraj0124@users.noreply.github.com> Date: Thu, 17 Oct 2019 07:23:42 +0530 Subject: [PATCH] Update routes.js Anuraj0124 did this PR for hacktober fest --- routes/route.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/routes/route.js b/routes/route.js index cb8a48c..a443fe9 100644 --- a/routes/route.js +++ b/routes/route.js @@ -6,6 +6,9 @@ router.get("/check", (req, res) => { res.send("Congratulations! Your app works! :)"); }); +router.get("/hello", (req, res) => { + res.send("Hacktober is cool! "); +}); router.post("add", (req, res) => { // Add logic here });