Sheng Lei
Add application file
28de1fd
raw
history blame
No virus
107 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def greet_json():
return {"Hello": "World!"}