init repo
This commit is contained in:
13
app/api/v1/router.py
Normal file
13
app/api/v1/router.py
Normal file
@@ -0,0 +1,13 @@
|
||||
"""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"])
|
||||
Reference in New Issue
Block a user