11 lines
270 B
TypeScript
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)
|
||
|
}
|