mysou / app.py
lu.jin
Add
e2da796
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def greet_json():
return {"Hello": "World!"}
@app.get("/proxy")
def proxy():
return {"Hello": "proxy"}