testdocker / app.py
meegar's picture
Update app.py
94b8f54 verified
raw
history blame contribute delete
173 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def greet_json():
return {"Hello": "World!"}
@app.get("/123")
def greet_json():
return {"Hello": "123!"}