ImageService / main.py
L4Walk's picture
提交
383cf9e
Raw
History Blame Contribute Delete
107 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def read_root():
return {"Hello": "World!"}