Files
the-biergarten-app/services/BeerPostLike/removeBeerPostLikeById.ts
2023-02-09 04:03:52 -05:00

12 lines
226 B
TypeScript

import DBClient from '@/prisma/DBClient';
const removeBeerPostLikeById = async (id: string) => {
return DBClient.instance.beerPostLike.delete({
where: {
id,
},
});
};
export default removeBeerPostLikeById;