feat: initialize inventory management application with Prisma schema, QR scanning, and UI components

This commit is contained in:
2026-04-05 14:27:36 -04:00
parent 6663856ffb
commit 9b746388fd
16 changed files with 2698 additions and 121 deletions

7
test.js Normal file
View File

@ -0,0 +1,7 @@
const { PrismaClient } = require('@prisma/client');
try {
const prisma = new PrismaClient();
console.log("SUCCESS");
} catch(e) {
console.error("FAIL", e);
}