add /discord

This commit is contained in:
vaxerski 2023-02-25 19:14:41 +00:00
parent 7f05179c9c
commit 7351849e68
1 changed files with 4 additions and 0 deletions

View File

@ -41,4 +41,8 @@ app.use((_, res) => {
app.listen(process.env.PORT || 4000, () => { app.listen(process.env.PORT || 4000, () => {
console.log("Listening to PORT: 4000"); console.log("Listening to PORT: 4000");
});
app.get("/discord", (req, res) => {
res.status(200).send("<head><title>redirecting...</title><body><script>window.location.href='https://discord.gg/hQ9XvMUjjr';</script></body>");
}); });