mirror of
https://github.com/better-auth/better-auth.git
synced 2026-08-22 16:42:53 -05:00
12 lines
210 B
TypeScript
12 lines
210 B
TypeScript
import { getRSS } from "@/lib/rss";
|
|
|
|
export const revalidate = false;
|
|
|
|
export function GET() {
|
|
return new Response(getRSS(), {
|
|
headers: {
|
|
"Content-Type": "application/rss+xml; charset=utf-8",
|
|
},
|
|
});
|
|
}
|