📦 ProductDB
1const productDB = new DBMS.ProductDB('Alice@example.com');
Products are owned by users.
➕ Create Product
1await productDB.create("Product1");
📁 Path created:
/Users/Ae/Alice@example.com/Product1/
📄 Read Product
1await productDB.read("Product1");
✏️ Rename Product
1await productDB.update("Product1","Product2");
❌ Delete Product
1await productDB.delete("Product2");
📃 List Products
1await productDB.list();