"""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. """ # Public package version (used by pyproject.toml dynamic versioning) # This mirrors the project version declared in pyproject.toml and should be # kept in sync for packaging stability. __version__ = "0.1.0" 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", ]