b7bb572b46
Deploy / Build Production Runtime Images (push) Has been skipped
Deploy / Deploy Production (push) Has been skipped
Deploy / Production Browser E2E (push) Has been skipped
CI/CD Pipeline / Frontend Lint (pull_request) Failing after 185h28m1s
CI/CD Pipeline / Validate Code Quality And Tests (pull_request) Failing after 185h28m5s
Deploy / Deploy Staging (push) Failing after 185h28m32s
CI/CD Pipeline / Frontend Lint (push) Failing after 185h28m58s
CI/CD Pipeline / Validate Code Quality And Tests (push) Failing after 185h29m4s
- 新增 EditTemplateService:模板 CRUD、名称去重、片段配置管理、重排序 - 新增 EditPlanService:计划 CRUD、状态机流转、片段管理、素材分配、生成流程 - 重构 edit_templates 路由:使用 EditTemplateService 封装业务逻辑 - 重构 edit_plans 路由:使用 EditPlanService 封装业务逻辑 - 新增 77 个单元测试(33 EditTemplateService + 44 EditPlanService) - 使用 stub 仓储注入,不依赖数据库
10 lines
228 B
Python
10 lines
228 B
Python
"""Service layer exports for Phase 8 模板编排引擎."""
|
|
|
|
from .edit_plan_service import EditPlanService
|
|
from .edit_template_service import EditTemplateService
|
|
|
|
__all__ = [
|
|
"EditPlanService",
|
|
"EditTemplateService",
|
|
]
|