binary / app.py
waseem11's picture
Upload app.py
c7444ac verified
Raw
History Blame Contribute Delete
114 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def greet_json():
return {"Hello": "World!"}