mirror of
https://github.com/turbomaster95/coderrrrr.git
synced 2025-05-11 04:30:14 +00:00
17 lines
539 B
TypeScript
17 lines
539 B
TypeScript
import type { VercelRequest, VercelResponse } from '@vercel/node';
|
|
|
|
export default function (req: VercelRequest, res: VercelResponse) {
|
|
const output = {
|
|
"@context": "https://www.w3.org/ns/activitystreams",
|
|
"id": "https://coderrrrr.site/api/activitypub/following",
|
|
"type": "OrderedCollection",
|
|
"totalItems": 2,
|
|
"orderedItems": [
|
|
"https://mastodon.social/users/coderrrrr",
|
|
"https://usr.cloud/users/coder"
|
|
]
|
|
};
|
|
|
|
res.status(200).setHeader("Content-Type", "application/activity+json").json(output);
|
|
};
|