mesop / app.py
Kishorekumr's picture
Update app.py
3b41838 verified
raw
history blame contribute delete
172 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def greet_json():
return {"Hello": "World!"}
@app.get("/test")
def test_json():
return {"data": "test"}