this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

my favorite color

alice 07824399 3701b9aa

+14
+6
src/app/myfavoritecolor/.well-known/atproto-did/route.ts
··· 1 + export async function GET(request: Request) { 2 + return new Response('did:plc:m2gxxmtdgygsrommldrsggtw', { 3 + status: 200, 4 + headers: { 'content-type': 'text/plain' }, 5 + }); 6 + }
+8
src/app/myfavoritecolor/route.ts
··· 1 + export async function GET(request: Request) { 2 + return new Response(null, { 3 + status: 302, 4 + headers: { 5 + 'Location': 'https://bsky.app/profile/did:plc:m2gxxmtdgygsrommldrsggtw', 6 + }, 7 + }); 8 + }