From 7351849e68d193291175ac61bd2c53b537f8e2b3 Mon Sep 17 00:00:00 2001 From: vaxerski <43317083+vaxerski@users.noreply.github.com> Date: Sat, 25 Feb 2023 19:14:41 +0000 Subject: [PATCH] add /discord --- index.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/index.js b/index.js index 9714fd2..57c8bf6 100644 --- a/index.js +++ b/index.js @@ -41,4 +41,8 @@ app.use((_, res) => { app.listen(process.env.PORT || 4000, () => { console.log("Listening to PORT: 4000"); +}); + +app.get("/discord", (req, res) => { + res.status(200).send("redirecting..."); }); \ No newline at end of file