refactor: Reorganize datamate-python (#34)

refactor: Reorganize datamate-python (previously label-studio-adapter) into a DDD style structure.
This commit is contained in:
Jason Wang
2025-10-30 01:32:59 +08:00
committed by GitHub
parent 0614157c0b
commit 2f7341dc1f
79 changed files with 1077 additions and 1577 deletions

View File

@@ -0,0 +1,12 @@
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)