Files
demotel-product-catalog/app.py
T
admin c0292a63f3 Update app.py
added product endpoint
2026-09-08 17:06:26 +00:00

14 lines
287 B
Python

from fastapi import FastAPI
import json
app = FastAPI()
@app.get("/")
def home():
return {"message": "Welcome to DemoTel Product Catalog"}
@app.get("/products")
def get_products():
with open("products.json", "r") as file:
products = json.load(file)
return products