fastapi_t5 / main.py
harithapliyal's picture
Update main.py
2dcba8e verified
raw
history blame
120 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def read_root():
return {"Hello": "I am not the World!"}