test-webhook api set 1500s

This commit is contained in:
nurullah
2025-11-03 14:42:10 +06:00
parent bb529b43c0
commit 7169e47ba0

View File

@@ -48,7 +48,7 @@ app.get("/test-webhook", (req, res) => {
// 55 sec = 55*1000 = 55000 milliseconds
setTimeout(() => {
res.status(200).send({ message: "Webhook received after 3 minutes!" });
}, 55000);
}, 15000);
});
const PORT = process.env.PORT || 4000;