1
Evan Pratten 66528d6284 Revert "The great migration"
This reverts commit f184e610368cedc50f9dd557953c83f70b55f329.
2024-11-14 12:45:30 -05:00

17 lines
448 B
JavaScript

export function onRequest(context) {
return new Response(
JSON.stringify({
"links": [
{
"href": "https://ewpratten.com/api/activitypub/nodeinfo",
"rel": "http://nodeinfo.diaspora.software/ns/schema/2.0"
}
]
}),
{
headers: {
"Content-Type": "application/jrd+json",
},
}
)
}