3dtest / app.py
giantmonkeyTC
Add Application File
38df3ec
raw
history blame
105 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def greet_json():
return {"Hello":"World!"}