SAOKE / app.py
ALLOUNE
Add application file
17dcd11
raw
history blame
110 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def greet_json():
return {"Hello": "World!"}