import prisma from '@typebot.io/lib/prisma'
export const deleteSession = (id: string) =>
prisma.chatSession.deleteMany({
where: {
id,
},
})