2
0
Files
bot/packages/scripts/index.ts

15 lines
283 B
TypeScript
Raw Normal View History

2022-02-25 09:45:31 +01:00
import { PrismaClient } from 'db'
import path from 'path'
require('dotenv').config({
path: path.join(
__dirname,
process.env.NODE_ENV === 'production' ? '.env.production' : '.env.local'
2022-02-25 09:45:31 +01:00
),
})
const prisma = new PrismaClient()
2022-02-25 18:30:14 +01:00
const main = async () => {}
2022-02-25 09:45:31 +01:00
main().then()