6 lines
156 B
TypeScript
6 lines
156 B
TypeScript
import type { RequestHandler } from './$types';
|
|
|
|
export const GET = (async ({ fetch }) => {
|
|
return await fetch('api/posts');
|
|
}) satisfies RequestHandler;
|