26 lines
816 B
Python
26 lines
816 B
Python
"""ExoRoute Core (skeleton)
|
|
|
|
This package provides a minimal seed for the ExoRoute DSL primitives and a
|
|
harmless, importable entry point to bootstrap integration with existing
|
|
CatOpt-like ecosystems.
|
|
"""
|
|
|
|
from .dsl import LocalProblem, SharedVariables, PlanDelta, DualVariables, PrivacyBudget, AuditLog, GraphOfContractsRegistry, GraphOfContractsRegistryEntry
|
|
from .energi_bridge import EnergiBridge
|
|
from .adapters.fix_ws_feed_adapter import FIXWebSocketFeedAdapter
|
|
from .adapters.simulated_venue_adapter import SimulatedVenueAdapter
|
|
|
|
__all__ = [
|
|
"LocalProblem",
|
|
"SharedVariables",
|
|
"PlanDelta",
|
|
"DualVariables",
|
|
"PrivacyBudget",
|
|
"AuditLog",
|
|
"GraphOfContractsRegistry",
|
|
"GraphOfContractsRegistryEntry",
|
|
"EnergiBridge",
|
|
"FIXWebSocketFeedAdapter",
|
|
"SimulatedVenueAdapter",
|
|
]
|