20 lines
564 B
Python
20 lines
564 B
Python
"""EnergiBridge-inspired canonical interop layer (skeleton).
|
|
|
|
This package provides minimal schema definitions used for Phase 0 MVP
|
|
and toy adapters that simulate telemetry and control planes.
|
|
"""
|
|
|
|
from .schemas import LocalProblem, SharedVariables, PlanDelta, DualVariables, AuditLog, PrivacyBudget, RegistryMetadata
|
|
from .orchestrator import VerifiableTelemOrchestrator
|
|
|
|
__all__ = [
|
|
"LocalProblem",
|
|
"SharedVariables",
|
|
"PlanDelta",
|
|
"DualVariables",
|
|
"AuditLog",
|
|
"PrivacyBudget",
|
|
"RegistryMetadata",
|
|
"VerifiableTelemOrchestrator",
|
|
]
|