initial commit

This commit is contained in:
Zacharias-Brohn
2026-01-14 06:12:55 +01:00
commit d702390660
46 changed files with 21386 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
const { PrismaClient } = require('@prisma/client');
const prisma = new PrismaClient();
async function main() {
try {
const users = await prisma.user.findMany();
console.log('Users:', users);
} catch (e) {
console.error('Error:', e);
} finally {
await prisma.$disconnect();
}
}
main();