docker-demo / main.py
ClearLove443's picture
Update main.py
eb172bc
raw
history blame contribute delete
175 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def read_root():
return {"Hello": "World!"}
@app.get("/test")
def read_root():
return {"Hello": "World2!"}