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