aispace / app.py
cornbear's picture
Add application file
a2345d2
Raw
History Blame Contribute Delete
110 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def greet_json():
return {"Hello": "World!"}