diff --git a/routes/route.js b/routes/route.js index cb8a48c..cd7745b 100644 --- a/routes/route.js +++ b/routes/route.js @@ -5,6 +5,9 @@ const router = express.Router(); router.get("/check", (req, res) => { res.send("Congratulations! Your app works! :)"); }); +router.get("/check", (req, res) => { + res.send("Hacktober is Amazing! :)"); +}); router.post("add", (req, res) => { // Add logic here