881eea9195
CI/CD Pipeline / Validate Code Quality And Tests (push) Successful in 36s
CI/CD Pipeline / Frontend Lint (push) Successful in 51s
CI/CD Pipeline / Build Production Runtime Images (push) Has been skipped
CI/CD Pipeline / Deploy Production (push) Has been skipped
CI/CD Pipeline / Production Browser E2E (push) Has been skipped
CI/CD Pipeline / Unit Tests (push) Successful in 56s
CI/CD Pipeline / Build & Push Staging (Watchtower auto-deploy) (push) Failing after 9s
CI/CD Pipeline / Staging E2E Tests (push) Has been skipped
CI/CD Pipeline / Staging API Integration Tests (push) Has been skipped
CI/CD Pipeline / Integration Tests (push) Successful in 1m50s
fix(api+ci): DELETE 204响应体全修复 + isort/black整理 + CI环境兼容 + 测试修复
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"]
|