14 lines
380 B
Python
14 lines
380 B
Python
"""API v1 router combining all endpoints."""
|
|
|
|
from fastapi import APIRouter
|
|
|
|
from app.api.v1.endpoints import convert, image
|
|
|
|
api_router = APIRouter()
|
|
|
|
# Include image processing endpoints
|
|
api_router.include_router(image.router, prefix="/image", tags=["Image OCR"])
|
|
|
|
# Include conversion endpoints
|
|
api_router.include_router(convert.router, prefix="/convert", tags=["Conversion"])
|