Files
xiaoxia-saas/packages/shared/__init__.py
T
CI Bot 49665496aa
CI/CD Pipeline / Validate Code Quality And Tests (pull_request) Has been cancelled
CI/CD Pipeline / Frontend Lint (pull_request) Has been cancelled
feat: decouple API and Worker cross-service dependencies
2026-06-27 10:22:25 +08:00

18 lines
395 B
Python

"""Shared utilities for API and Worker services."""
from .config import SharedSettings, get_shared_settings
from .storage import (
SharedStorageService,
get_shared_settings,
get_shared_storage_service,
get_storage_service,
)
__all__ = [
"SharedSettings",
"SharedStorageService",
"get_shared_settings",
"get_shared_storage_service",
"get_storage_service",
]