track-separator / app.py
danja's picture
hello
07f73eb
raw
history blame contribute delete
110 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def greet_json():
return {"Hello": "World!"}