11 lines
415 B
Python
11 lines
415 B
Python
"""Idea159 ArbSphere Federated Cross (toy) package.
|
|
|
|
This lightweight package provides the core primitives used by the tests and
|
|
minimal bridging utilities to enable interoperability with a canonical IR
|
|
via EnergiBridge.
|
|
"""
|
|
|
|
from .goc_registry import GraphOfContracts, GoCAdapter, GoCSchema # re-export for convenience
|
|
|
|
__all__ = ["core", "solver", "energi_bridge", "GraphOfContracts", "GoCAdapter", "GoCSchema"]
|