traversaal_test / app.py
vhr1007's picture
Create app.py
53e7a1f verified
raw
history blame
117 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def greet_json():
return {"Hello": "World!"}