from fastapi import APIRouter from .config import router as about_router from .project import router as project_router from .task import router as task_router from .template import router as template_router from .auto import router as auto_router from .editor import router as editor_router from .export import router as export_router router = APIRouter( prefix="/annotation", tags = ["annotation"] ) router.include_router(about_router) router.include_router(project_router) router.include_router(task_router) router.include_router(template_router) router.include_router(auto_router) router.include_router(editor_router) router.include_router(export_router)