vinhngba2704's picture
Add application file
e42c97c
raw
history blame contribute delete
199 Bytes
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!"}