README / app.py
Cunqian's picture
Create app.py
7a7faf0 verified
Raw
History Blame Contribute Delete
99 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def greet_json():
return {"Hello"}