Files
xiaoxia-saas/packages/adapters/sqlalchemy_impl/__init__.py
T
CI Test 3436900de0
Deploy / Build Production Runtime Images (push) Has been cancelled
Deploy / Deploy Production (push) Has been cancelled
Deploy / Production Browser E2E (push) Has been cancelled
Deploy / Deploy Staging (push) Has been cancelled
CI/CD Pipeline / Frontend Lint (push) Failing after 190h13m50s
CI/CD Pipeline / Validate Code Quality And Tests (push) Failing after 190h13m54s
feat(phase8-task202): TemplateClipConfig + EditPlanClip 数据模型、仓储、迁移与测试 (#143)
2026-07-01 14:28:20 +08:00

40 lines
1.5 KiB
Python

"""SQLAlchemy-based repository implementations."""
from .asset_library_repository import SQLAlchemyAssetLibraryRepository
from .asset_repository import SQLAlchemyAssetRepository
from .classification_job_repository import SQLAlchemyClassificationJobRepository
from .edit_plan_clip_repository import SQLAlchemyEditPlanClipRepository
from .edit_plan_repository import SQLAlchemyEditPlanRepository
from .edit_template_repository import SQLAlchemyEditTemplateRepository
from .generated_video_repository import SQLAlchemyGeneratedVideoRepository
from .generation_task_repository import SQLAlchemyGenerationTaskRepository
from .ingest_job_repository import SQLAlchemyIngestJobRepository
from .project_repository import SQLAlchemyProjectRepository
from .session import (
Base,
build_engine,
build_session_factory,
ensure_database_exists,
initialize_database,
)
from .template_clip_config_repository import SQLAlchemyTemplateClipConfigRepository
__all__ = [
"Base",
"SQLAlchemyAssetLibraryRepository",
"SQLAlchemyAssetRepository",
"SQLAlchemyClassificationJobRepository",
"SQLAlchemyEditPlanClipRepository",
"SQLAlchemyEditPlanRepository",
"SQLAlchemyEditTemplateRepository",
"SQLAlchemyGeneratedVideoRepository",
"SQLAlchemyGenerationTaskRepository",
"SQLAlchemyIngestJobRepository",
"SQLAlchemyProjectRepository",
"SQLAlchemyTemplateClipConfigRepository",
"build_engine",
"build_session_factory",
"ensure_database_exists",
"initialize_database",
]