You've already forked DataMate
* feat: data annotation page adaptation to the backend API. * feat: Implement labeling configuration editor and enhance annotation task creation form
14 lines
343 B
Python
14 lines
343 B
Python
from fastapi import APIRouter
|
|
|
|
from .about import router as about_router
|
|
from .project import router as project_router
|
|
from .task import router as task_router
|
|
|
|
router = APIRouter(
|
|
prefix="/annotation",
|
|
tags = ["annotation"]
|
|
)
|
|
|
|
router.include_router(about_router)
|
|
router.include_router(project_router)
|
|
router.include_router(task_router) |