Skip to content

Commit

Permalink
feat: add /bluesky endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
m1sk9 committed May 2, 2024
1 parent c2b53a3 commit a64cc20
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,4 @@ Accessing an endpoint with no destination will return a [`404`](https://develope
| `/x` | Pulsate X |
| `/youtube` | Pulsate YouTube |
| `/discussions` | Pulsate Org Discussion |
| `/bluesky` | Pulsate Bluesky |
4 changes: 4 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,8 @@ app.get("/discussions", (c) => {
return c.redirect("https://github.com/orgs/pulsate-dev/discussions", 302);
});

app.get("/bluesky", (c) => {
return c.redirect("https://bsky.app/profile/pulsate.dev", 302);
});

export default app;

0 comments on commit a64cc20

Please sign in to comment.