diff --git a/index.js b/index.js index 31ec070..1eb97ca 100644 --- a/index.js +++ b/index.js @@ -2082,6 +2082,10 @@ app.get("/", async (req, res) => { return res.redirect("https://rasadyar.com"); }); +app.get("/health", async (req, res) => { + return res.json({ status: "server is working..." }); +}); + // Start the server app.listen(port, () => { console.log(`Server is running on http://localhost:${port}`);