__init__.py
python
sha256:8461d44b77376fbf06fa7c3e085d309e3010fd8d5886d63c63e69ce118811ad4
docs: record AFF-b feature-tip SHAs after AFF-b-ISR commit.
Human
4 days ago
| 1 | """Governance Hygiene Agent (Phase 9A-5).""" |
| 2 | |
| 3 | from __future__ import annotations |
| 4 | |
| 5 | __all__ = [ |
| 6 | "DriftReport", |
| 7 | "GovernanceSyncResult", |
| 8 | "VerifiedReads", |
| 9 | "detect_drift", |
| 10 | "run_governance_sync", |
| 11 | ] |
| 12 | |
| 13 | |
| 14 | def __getattr__(name: str): |
| 15 | if name == "detect_drift": |
| 16 | from tools.governance_hygiene.drift import detect_drift |
| 17 | |
| 18 | return detect_drift |
| 19 | if name == "run_governance_sync": |
| 20 | from tools.governance_hygiene.engine import run_governance_sync |
| 21 | |
| 22 | return run_governance_sync |
| 23 | if name in {"DriftReport", "GovernanceSyncResult", "VerifiedReads"}: |
| 24 | from tools.governance_hygiene import types as _types |
| 25 | |
| 26 | return getattr(_types, name) |
| 27 | raise AttributeError(f"module {__name__!r} has no attribute {name!r}") |
File History
1 commit
sha256:8461d44b77376fbf06fa7c3e085d309e3010fd8d5886d63c63e69ce118811ad4
docs: record AFF-b feature-tip SHAs after AFF-b-ISR commit.
Human
4 days ago