mirror of
https://github.com/LukeHagar/relay.git
synced 2025-12-06 04:21:14 +00:00
10 lines
212 B
TypeScript
10 lines
212 B
TypeScript
class PrismaClient {
|
|
constructor() {
|
|
throw new Error(
|
|
'@prisma/client/deno/edge did not initialize yet. Please run "prisma generate" and try to import it again.',
|
|
)
|
|
}
|
|
}
|
|
|
|
export { PrismaClient }
|