2
0
Files
bot/packages/scripts/playground.ts
2022-11-23 11:40:57 +01:00

10 lines
261 B
TypeScript

import { PrismaClient } from 'db'
import { promptAndSetEnvironment } from './utils'
const executePlayground = async () => {
await promptAndSetEnvironment()
const prisma = new PrismaClient({ log: ['query', 'info', 'warn', 'error'] })
}
executePlayground()