from fastapi import FastAPI from app.api import ocr app = FastAPI() app.include_router(ocr.init, prefix='/ocr', tags='OCR')