diff --git a/routes/route.js b/routes/route.js index cb8a48c..315c074 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("/hello", (req, res) => { + res.send("hacktoberfest is cool!"); +}); + router.post("add", (req, res) => { // Add logic here });