mirror of
https://github.com/nexu-io/open-design.git
synced 2026-06-01 03:14:35 +07:00
5 lines
136 B
TypeScript
5 lines
136 B
TypeScript
import { buildBlogRss } from '../_lib/blog-rss';
|
|
|
|
export async function GET(context: { site: URL }) {
|
|
return buildBlogRss(context);
|
|
}
|