File size: 329 Bytes
67ea2ab b857757 e185da6 67ea2ab |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
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([]);
}
|