mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-02-16 18:52:06 +00:00
7 lines
196 B
TypeScript
7 lines
196 B
TypeScript
import DBClient from '@/prisma/DBClient';
|
|
|
|
const findBeerPostLikeById = async (id: string) =>
|
|
DBClient.instance.beerPostLike.findUnique({ where: { id } });
|
|
|
|
export default findBeerPostLikeById;
|