Files
DataMate/runtime/datamate-python/app/module/annotation/interface/__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

12 lines
265 B
Python

from fastapi import APIRouter
from .project import router as project_router
from .task import router as task_router
router = APIRouter(
prefix="/annotation",
tags = ["annotation"]
)
router.include_router(project_router)
router.include_router(task_router)