Skip to content

Commit

Permalink
feat: add email link
Browse files Browse the repository at this point in the history
  • Loading branch information
arpitdalal committed Apr 20, 2024
1 parent 6f8eb4c commit 8d8ce9f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,10 @@ app.get("/twitter", (_, res) => {
res.redirect(URLS.twitter);
});

app.get("/email", (_, res) => {
res.redirect(URLS.mail);
});

app.get("/healthcheck", (_, res) => {
res.send("OK");
});
Expand Down

0 comments on commit 8d8ce9f

Please sign in to comment.