vepp-logo / app /api /logo /route.ts
enzostvs's picture
enzostvs HF Staff
test
e185da6
raw
history blame
329 Bytes
import prisma from "@/_utils/prisma";
export async function GET() {
// const images = await prisma.logo.findMany({
// select: {
// id: true,
// },
// take: 24,
// orderBy: {
// id: "desc",
// },
// });
// return Response.json(images.map((image) => image.id));
return Response.json([]);
}