Files
DataMate/runtime/datamate-python/app/module/__init__.py
Jason Wang 2f7341dc1f refactor: Reorganize datamate-python (#34)
refactor: Reorganize datamate-python (previously label-studio-adapter) into a DDD style structure.
2025-10-30 01:32:59 +08:00

11 lines
197 B
Python

from fastapi import APIRouter
from .annotation.interface import router as annotation_router
router = APIRouter(
prefix="/api"
)
router.include_router(annotation_router)
__all__ = ["router"]