eleboog-astro/src/pages/feeds/feed.xml.ts
Kebo ee28bb4c44
Some checks failed
ci / builder (push) Failing after 1m56s
I am going to cry
2025-04-30 00:26:15 -05:00

7 lines
No EOL
265 B
TypeScript

import { computeFeed, injectXSL } from "../../lib/feed.ts";
export async function GET(): Promise<Response> {
const feed = await computeFeed();
return new Response(injectXSL(feed.atom1(), "/feed.xsl"), { headers: { "Content-Type": "application/atom+xml" } })
}