2025-09-09 00:15:08 +00:00
|
|
|
import { PrismaClient } from '@/app/generated/prisma';
|
2025-09-07 22:57:43 +00:00
|
|
|
|
|
|
|
|
const prisma = new PrismaClient();
|
|
|
|
|
|
|
|
|
|
export async function GET() {
|
|
|
|
|
const contents = await prisma.content.findMany();
|
|
|
|
|
return Response.json(contents);
|
|
|
|
|
}
|