11 lines
742 B
Python
11 lines
742 B
Python
# #region git_service [C:1] [TYPE Module:Tombstone] [SEMANTICS git, service, shim, re-export, decomissioned]
|
|
# @BRIEF Re-export shim — GitService has been decomposed into services/git/ package.
|
|
# All consumers continue to import from this same path without changes.
|
|
# @RELATION CALLS -> [GitServiceModule]
|
|
# @RATIONALE Monolithic GitService (2101 lines) was decomposed into 8 domain-specific mixins
|
|
# under services/git/ to satisfy INV_7 (< 400 lines per module). This shim preserves
|
|
# the original import path for all 5 consumers.
|
|
# @REJECTED Breaking 5 consumer imports to remove this shim — unacceptable migration cost.
|
|
from src.services.git import GitService # noqa: F401
|
|
# #endregion git_service
|