8 lines
227 B
TypeScript
8 lines
227 B
TypeScript
import { prisma } from "@/prisma/prisma-client"
|
|
import { NextResponse } from "next/server"
|
|
|
|
export async function GET() {
|
|
const ingredients = await prisma.category.findMany()
|
|
|
|
return NextResponse.json(ingredients)
|
|
} |