demo / app.py
Aboge's picture
Add application file
91978c4
raw
history blame
No virus
109 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def greet_json():
return {"Hello": "World!"}