UNPKG

@wildboar/meerkat-dsa

Version:

X.500 Directory Server (DSA) and LDAP Server by Wildboar Software.

18 lines (13 loc) 291 B
import { PrismaClient } from "@prisma/client"; const prisma = new PrismaClient(); export async function seed () { } seed() .catch(e => { console.error(e); process.exit(1); }) .finally(async () => { await prisma.$disconnect(); });