diff --git a/app.py b/app.py index 19197cd..6f19e2c 100644 --- a/app.py +++ b/app.py @@ -1 +1,5 @@ -print("DemoTel Product Catalog") \ No newline at end of file +import json + +with open("products.json","r") as f: + products = json.load(f) +print("products") \ No newline at end of file