From 871490bcc0d0b48e8074709b6e2b733b4f41c9fc Mon Sep 17 00:00:00 2001 From: Sriram4747 <56625062+Sriram4747@users.noreply.github.com> Date: Wed, 16 Oct 2019 12:41:51 +0530 Subject: [PATCH] Update route.js --- routes/route.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/routes/route.js b/routes/route.js index cb8a48c..ad89053 100644 --- a/routes/route.js +++ b/routes/route.js @@ -3,7 +3,11 @@ const express = require("express"); const router = express.Router(); router.get("/check", (req, res) => { - res.send("Congratulations! Your app works! :)"); + res.send("Congratulations! Your app works!I have edited this and it is cool :)"); +}); + +router.get("/hello", (req, res) => { + res.send("I have identified something:)"); }); router.post("add", (req, res) => {