test / app.py
tuanshan's picture
111
6e73ea8
Raw
History Blame Contribute Delete
175 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def greet_json():
return {"Hello": "World!"}
@app.get("/userinfo/")
def getuserinfo():
return "User Info"