wine-shop/src/server/actions/allProducers.ts
christian 17c0c0e853
Some checks failed
Vercel Production Deployment / Deploy-Production (push) Failing after 43s
CreateWine is sort of working. It's not pushing producer id though
2024-05-24 12:01:58 +02:00

7 lines
130 B
TypeScript

'use server'
import { db } from "../db/index";
export async function getProducers(){
return db.query.producers.findMany();
}