18 lines
431 B
Python
18 lines
431 B
Python
"""TradeCipher MVP Skeleton
|
|
|
|
Lightweight, testable scaffold for canonical data contracts, a bridge, and
|
|
adapters to enable cross-venue interoperability with privacy-preserving goals.
|
|
"""
|
|
|
|
from . import contracts # noqa: F401
|
|
from . import contract_registry # noqa: F401
|
|
from . import bridge # noqa: F401
|
|
from . import adapters # noqa: F401
|
|
|
|
__all__ = [
|
|
"contracts",
|
|
"contract_registry",
|
|
"bridge",
|
|
"adapters",
|
|
]
|