🛠️ index.js -> updated endpoint path

This commit is contained in:
2025-05-02 16:45:08 +02:00
parent ad43004e46
commit 48ef406428
+1 -1
View File
@@ -22,7 +22,7 @@ const limiter = rateLimit({
app.use(limiter);
// Random rejection reason endpoint
app.get('/no', (req, res) => {
app.get('/', (req, res) => {
const reason = reasons[Math.floor(Math.random() * reasons.length)];
res.json({ reason });
});