20 lines
694 B
Python
20 lines
694 B
Python
# #region CleanReleaseContracts [C:3] [TYPE Module] [SEMANTICS clean-release, compliance, package, subsystem]
|
|
# @BRIEF Publish the canonical semantic root for the clean-release backend service cluster.
|
|
# @LAYER: Domain
|
|
# @RELATION DEPENDS_ON -> [ComplianceOrchestrator]
|
|
# @RELATION DEPENDS_ON -> [ManifestBuilder]
|
|
# @RELATION DEPENDS_ON -> [PolicyEngine]
|
|
# @RELATION DEPENDS_ON -> [RepositoryRelations]
|
|
|
|
from ...core.logger import logger
|
|
|
|
# [REASON] Initializing clean_release package.
|
|
logger.reason("Clean release compliance subsystem initialized.")
|
|
|
|
# Legacy compatibility exports are intentionally lazy to avoid import cycles.
|
|
__all__ = [
|
|
"logger",
|
|
]
|
|
|
|
# #endregion CleanReleaseContracts
|