""" Orientation & Crop API - Steps 1 and 4 of the OCR Pipeline. Barrel re-export: merges routers from orientation_api and crop_api, and re-exports set_cache_ref for main.py. """ from fastapi import APIRouter from orientation_crop_helpers import set_cache_ref # noqa: F401 from orientation_api import router as _orientation_router from crop_api import router as _crop_router router = APIRouter() router.include_router(_orientation_router) router.include_router(_crop_router)