Files
vinext-boilerplate/src/pages/api/posts.ts
2026-03-25 09:24:14 -07:00

9 lines
289 B
TypeScript

import type { NextApiRequest, NextApiResponse } from "next";
import { listRecentPosts } from "~/server/posts";
export default async function handler(_request: NextApiRequest, response: NextApiResponse) {
const posts = await listRecentPosts();
response.status(200).json({ posts });
}