fix: remove duplicate api/v1 prefix in project-management routes

This commit is contained in:
Xiaoxia AI
2026-06-16 22:11:41 +08:00
parent 42ee07b3c7
commit 415b180c5d
@@ -25,7 +25,7 @@ from packages.application.project_management_use_cases import (
)
from packages.domain import TaskPriority, TaskStatus
router = APIRouter(prefix="/api/v1/project-management", tags=["project-management"])
router = APIRouter(prefix="/project-management", tags=["project-management"])
# 简易依赖注入(生产环境应走数据库)
_task_repo = InMemoryTaskRepository()