Files
demotel-product-catalog/app.py
T
2026-09-07 14:56:26 +00:00

7 lines
132 B
Python

from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def home():
return {"message": "Welcome to DemoTel Product Catalog"}