14130a2123
CI/CD Pipeline / Validate Code Quality And Tests (pull_request) Failing after 12s
CI/CD Pipeline / Integration Tests (pull_request) Failing after 18s
CI/CD Pipeline / Unit Tests (pull_request) Failing after 44s
CI/CD Pipeline / Frontend Lint (pull_request) Failing after 1m52s
CI/CD Pipeline / Build & Push Staging (Watchtower auto-deploy) (pull_request) Has been skipped
CI/CD Pipeline / Build Production Runtime Images (pull_request) Has been skipped
CI/CD Pipeline / Staging E2E Tests (pull_request) Has been skipped
CI/CD Pipeline / Staging API Integration Tests (pull_request) Has been skipped
CI/CD Pipeline / Deploy Production (pull_request) Has been skipped
CI/CD Pipeline / Production Browser E2E (pull_request) Has been skipped
- 修复所有14个DELETE接口204响应体问题(response_class=Response + response_model=None) - projects.py补充response_model=None(FastAPI从返回类型推断response_model导致204校验失败) - isort全量格式化15个文件(对齐black profile,line_length=120) - 修复assets.py flake8 E303(第77行前空行3→2) - black格式化3个文件:unified_render_service.py, generation.py, check_migration_safety.py Unit Tests: 1425 passed, 10 failed(10个失败均为已有问题,与204/isort无关)
15 lines
466 B
Python
15 lines
466 B
Python
"""Backward-compatible re-export from shared storage.
|
|
|
|
All storage logic now lives in ``packages.shared.storage``.
|
|
This module keeps old import paths working so existing code
|
|
does not need to change.
|
|
"""
|
|
|
|
from packages.shared.storage import SharedStorageService as OSSStorageService
|
|
from packages.shared.storage import (
|
|
get_shared_storage_service,
|
|
get_storage_service,
|
|
)
|
|
|
|
__all__ = ["OSSStorageService", "get_storage_service", "get_shared_storage_service"]
|