mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-02-16 20:13:49 +00:00
12 lines
226 B
TypeScript
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;
|