CJ_Clippy 93b90c5586
Some checks failed
ci / build (push) Has been cancelled
progress
2024-07-10 14:11:18 -08:00

11 lines
270 B
TypeScript

import { generateFeeds } from "@/app/lib/rss"
export async function GET() {
const { atom1 } = await generateFeeds()
const options = {
headers: {
"Content-Type": "application/atom+xml"
}
}
return new Response(atom1, options)
}