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 });