From a64cc20606b90869e29c48e46a2fd1a9897f5dd1 Mon Sep 17 00:00:00 2001 From: m1sk9 Date: Thu, 2 May 2024 13:44:19 +0900 Subject: [PATCH] feat: add `/bluesky` endpoint --- README.md | 1 + src/index.ts | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/README.md b/README.md index 3a05089..5e3a01d 100644 --- a/README.md +++ b/README.md @@ -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 | diff --git a/src/index.ts b/src/index.ts index ba56198..afc724c 100644 --- a/src/index.ts +++ b/src/index.ts @@ -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;