You've already forked DataMate
refactor: Reorganize datamate-python (previously label-studio-adapter) into a DDD style structure.
11 lines
197 B
Python
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"] |