t5-fastapi / main.py
vincentlam's picture
Update main.py
10a5522 verified
raw
history blame
107 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def read_root():
return {"Hello": "World!"}