18 lines
439 B
Python
18 lines
439 B
Python
"""MercuriusMesh core package (Phase 0).
|
|
|
|
Contains canonical contracts and a tiny deterministic two-venue simulator used in tests.
|
|
"""
|
|
|
|
from .contracts import LocalBook, OrderEvent, QuoteSnapshot, SharedSignals, PlanDelta, NetworkLink
|
|
from .simulator import DeterministicSimulator
|
|
|
|
__all__ = [
|
|
"LocalBook",
|
|
"OrderEvent",
|
|
"QuoteSnapshot",
|
|
"SharedSignals",
|
|
"PlanDelta",
|
|
"NetworkLink",
|
|
"DeterministicSimulator",
|
|
]
|