mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-04-30 22:29:29 +08:00
9 lines
266 B
TypeScript
9 lines
266 B
TypeScript
import type { RequestHandler } from '@sveltejs/kit'
|
|
import { genPosts } from '$lib/utils/posts'
|
|
|
|
export const GET: RequestHandler = async () => ({
|
|
headers: {
|
|
'Content-Type': 'application/json; charset=utf-8'
|
|
},
|
|
body: JSON.stringify(genPosts(), null, 2)
|
|
})
|