From 4c395d720e6265171191014589c190d7fe699583 Mon Sep 17 00:00:00 2001 From: lanCSHcelot <48651190+lanCSHcelot@users.noreply.github.com> Date: Wed, 16 Oct 2019 12:41:21 +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..d898234 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("/Yo", (req, res) => { + res.send("Hacktober is cool :)"); +}); + router.post("add", (req, res) => { // Add logic here });