"""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, get_shared_storage_service, get_storage_service, ) __all__ = ["OSSStorageService", "get_storage_service", "get_shared_storage_service"]