1217d8cef0
Deploy / Build Production Runtime Images (push) Has been skipped
Deploy / Deploy Production (push) Has been skipped
Deploy / Production Browser E2E (push) Has been skipped
Deploy / Deploy Staging (push) Failing after 210h35m44s
CI/CD Pipeline / Frontend Lint (push) Failing after 210h36m11s
CI/CD Pipeline / Validate Code Quality And Tests (push) Failing after 210h36m17s
21 lines
648 B
Python
21 lines
648 B
Python
"""Infrastructure package for cross-cutting system services.
|
|
|
|
This package contains foundational services that support the domain layer:
|
|
- ModuleRegistry: 模块注册中心,支持功能模块的动态注册与发现
|
|
- FeatureFlags: Feature Flag 系统,支持按套餐/用户粒度控制功能开关
|
|
"""
|
|
|
|
from .feature_flags import FeatureFlag, FeatureFlags, FeatureScope, feature_flags
|
|
from .module_registry import Module, ModuleRegistry, ModuleStatus, module_registry
|
|
|
|
__all__ = [
|
|
"Module",
|
|
"ModuleRegistry",
|
|
"ModuleStatus",
|
|
"module_registry",
|
|
"FeatureFlags",
|
|
"FeatureFlag",
|
|
"FeatureScope",
|
|
"feature_flags",
|
|
]
|