demo_xray_2 / app.py
Ahmed007's picture
Add application file
0a9a7a1
raw
history blame
110 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def greet_json():
return {"Hello": "World!"}