fastapi_rapidocr / main.py
HycJack's picture
add file
08606b0
raw
history blame
107 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def read_root():
return {"Hello": "World!"}