Spaces:
Sleeping
Sleeping
File size: 199 Bytes
e42c97c | 1 2 3 4 5 6 7 8 9 10 11 12 | from fastapi import FastAPI
app = FastAPI()
@app.get("/test")
def test_function():
return {"Name": "Vinh",
"Age": 20}
@app.get("/")
def greet_json():
return {"Hello": "World!"} |