diff --git a/data/orders.txt b/data/orders.txt new file mode 100644 index 0000000..804aaa8 --- /dev/null +++ b/data/orders.txt @@ -0,0 +1,28 @@ +[ + { + "id": 1, + "customer": "Alice", + "items": [ + {"name": "Laptop", "price": 1000, "quantity": 1}, + {"name": "Mouse", "price": 50, "quantity": 2} + ], + "total_price": 0 + }, + { + "id": 2, + "customer": "Bob", + "items": [ + {"name": "Keyboard", "price": 80, "quantity": 1}, + {"name": "Mouse", "price": 50, "quantity": 1} + ], + "total_price": 0 + }, + { + "id": 3, + "customer": "Alice", + "items": [ + {"name": "Monitor", "price": 300, "quantity": 2} + ], + "total_price": 0 + } +] \ No newline at end of file